|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
新手小白求助,刚学到类和对象的使用
定义了一个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 static void 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);
}
}
代码如上
你应该编译运行 demo.java 而不是 helloworld.java
|
|