我正在尝试编写一个程序,它将在一个类中添加两个数字的输出放在一起,并将其添加到不同的数字。这是第一堂课:
public class Add{
public static void main(String[] args) {
int a = 5;
int b = 5;
int c = a + b;
System.out.println(c);
}
}
第二个:
public class AddExtra{
public static void main(String[] args) {
Add a = new Add();
int b = 5;
int c = a.value+b;
System.out.println(c);
}
}
我如何让它工作?感谢。
答案 0 :(得分:1)
建议:
add(...)
方法,然后创建另一个类
add(myInt)
方法,答案 1 :(得分:0)
你可以尝试
public class Add{
public int c; // public variable
public Add() { // This is a constructor
// It will run every time you type "new Add()"
int a = 5;
int b = 5;
c = a + b;
}
}
然后,你可以这样做:
public class AddExtra{
public static void main(String[] args) {
Add a = new Add(); // Here, the constructor is run
int b = 5;
int c = a.c + b; // Access "a.c" because "c" is a public variable now
System.out.println(c);
}
}