gpt4 book ai didi

java - 需要帮助在 Eclipse 中使用 ACM Java 库运行程序

转载 作者:太空宇宙 更新时间:2023-11-04 07:45:07 25 4
gpt4 key购买 nike

我刚刚开始在 iTunes 上学习斯坦福 CS106a 类(class),但在使用 Eclipse 时遇到了问题。这是我的代码:

/*
* File: Add2Integers.java
* -----------------------
* A simple ConsoleProgram to add two integers
* and display their total.
*/

import acm.program.*;

public class Add2Integers extends ConsoleProgram {

public void run() {
/* So all y'all in the back can see! */
setFont("DejaVuSerif-BOLD-24");

println("This program adds two numbers.");
int n1 = readInt("Enter n1: ");
int n2 = readInt("Enter n2: ");
int total = n1 + n2;
println("The total is " + total + ".");
}

}

当我尝试运行它时,我收到一条消息,表明该部分不包含小程序。我认为这与import acm.program有关。

我下载了 acm 工具包,并尝试将 program.java 文件添加到我的根文件夹中,构建路径,对整个 acm 文件夹执行相同的操作,但没有任何效果。

我只需要帮助来启动并运行这个简单的程序,以便我可以开始学习。

我运行的是 OSX 10.8。

最佳答案

要运行 Java 应用程序,您需要一个 main 方法:

public static void main(String[] args) {
Add2Integers add2Integers = new Add2Integers();
add2Integers.run();
}

关于java - 需要帮助在 Eclipse 中使用 ACM Java 库运行程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15437723/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com