如何为 Java 运行 DDD?

发布于 2024-10-31 20:49:27 字数 210 浏览 0 评论 0原文

我正在关注这个教程 此处

出现一个弹出窗口,显示“无法访问班级考试” 我输入后

%javac -g test.java
%ddd -jdb test &

I was following this tutorial
here

and got a popup that says "cannot access class test"
after I typed in

%javac -g test.java
%ddd -jdb test &

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

从﹋此江山别 2024-11-07 20:49:27

使用 DDD 调试 java 时,您必须按照您提供的示例中的步骤设置 JDB 用于查找文件的类路径。否则,您将看到您所看到的消息“无法访问类测试”。

为此,请在 DDD 中单击“编辑”,然后单击“JDB 设置”,然后键入“.”。 (不包括引号)在类路径字段中。这将导致 JDB 在查找示例 java 代码时在当前目录中进行搜索。

有关 java 类路径及其用途的更多信息,请参阅

http://en.wikipedia。 org/wiki/Classpath_%28Java%29

希望这会有所帮助。

约翰

When using DDD to debug java you must, as well as following the steps in the example you have provided, set the classpath that JDB uses to find your files. Otherwise you will see the message 'Cannot Access Class Test' that you are seeing.

To do this, in DDD click Edit, then JDB Settings, then type '.' (not including quote marks) in the classpath field. This will cause JDB to search in the current directory when looking for your example java code.

For more information about the java classpath and what it does, see

http://en.wikipedia.org/wiki/Classpath_%28Java%29

Hope this helps.

John

独守阴晴ぅ圆缺 2024-11-07 20:49:27
%javac -g test.java
%ddd -jdb test &

使用以下命令的简单 java 程序:

class test{

static public void Main(String[] args){
    System.out.println("hello");
    }
}
%javac -g test.java
%ddd -jdb test &

simple java program that works with these commands:

class test{

static public void Main(String[] args){
    System.out.println("hello");
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文