你可以帮我设置环境变量,这样我就可以运行我的程序了... 我已将路径变量设置为我的jdk路径..我还要将类路径设置为我的jdk或我的程序保存的位置......
class program {
String nm = "";
public static void main(String args[]){
nm = "myname";
System.out.println(nm);
}
}
我收到错误"未找到主要课程" ...
请帮助.. !!!!!!!!!!
答案 0 :(得分:0)
答案 1 :(得分:0)
试试这个:
Public class program
{
String nm = "";
public static void main(String args[])
{
nm = "myname";
System.out.println(nm);
}
}
答案 2 :(得分:0)
首先改变你的代码
class program {
static String nm = ""; //this should be static
public static void main(String args[]){
nm = "myname"; //other wise you can't refer it here
System.out.println(nm);
}
}
然后将其保存为program.java
javac program.java
然后运行此
java program