我想编写一个包含三个 int 值的类,并在 main() 中操作它们;
我可以想到两种方法
- 有一个单独的 .class 文件并将其包含到另一个包含 main() 函数的类文件中
东西.java:
class stuff { ... }
class app {
public static void main(String[] arguments) {
.. // manipulate the instance variables
}
}
2在同一个文件app.java中有一个类,然后一个类包含主函数
应用程序.java:
class stuff { ... }
class app {
public static void main(String[] arguments) {
.. // manipulate the instance variables
}
}
这些是在 java 中完成的主要方式吗(我没有看到任何关于包含 java 类的内容)。或者我可以让 stuff 类包含 main 本身吗?