调用类中的对象 为啥说找不到main函数
新手小白求助,刚学到类和对象的使用定义了一个heeloworld类,然后想在类demo中调用helloworld的对象
跟着教程视频教的代码 为什么如果在helloworld类中没有加main函数 代码就会报如下错误类 com.itheama.helloworld 中找不到 main 方法, 请将 main 方法定义为:
public static void main(String[] args)
否则 JavaFX 应用程序类必须扩展javafx.application.Application,但是如果我在helloworld中加上了public static void main(String[] args) {}这段代码,测试代码中想调用helloworld中的代码就没法调用呢?有过C++的一点基础 今晚看这个真的蒙蔽,想求教下各位大佬
public class helloworld{
//public static void main(String[] args) {}
String std="hhh";
int price=120;
public staticvoid call()
{
System.out.println("hhh");
}
}
public class demo {
public static void main(String[] args) {
helloworld h=new helloworld();
h.call();
System.out.println(h.std);
System.out.println(h.price);
}
}
代码如上 你在一个 源文件里 定义了两个 public 类? 你应该编译运行 demo.java 而不是 helloworld.java isdkz 发表于 2022-3-23 21:18
你应该编译运行 demo.java 而不是 helloworld.java
晕求 怎么笨成这样 感谢哥 学过一点c++说怎么这里半天调个对象都调不出来!!
页:
[1]