当前位置: 技术问答>java相关
helloworld编译成功,但是运行的时候出错。
来源: 互联网 发布时间:2015-04-08
本文导语: public class helloworld{ public static void main{ System.out.println("aaa"); } } javac helloworld成功 但是java helloworld失败 错误说,exception in thread "main" java.long.noclassdeffounderror:helloworld/class 各位大虾帮帮我。 ...
public class helloworld{
public static void main{
System.out.println("aaa");
}
}
javac helloworld成功
但是java helloworld失败
错误说,exception in thread "main" java.long.noclassdeffounderror:helloworld/class
各位大虾帮帮我。
public static void main{
System.out.println("aaa");
}
}
javac helloworld成功
但是java helloworld失败
错误说,exception in thread "main" java.long.noclassdeffounderror:helloworld/class
各位大虾帮帮我。
|
exception in thread "main" java.long.noclassdeffounderror:helloworld/class
看到没有?你是这样运行的:java helloworld.class
java把你的helloworld当成包class当成类名了
所以你应该java helloworld
看到没有?你是这样运行的:java helloworld.class
java把你的helloworld当成包class当成类名了
所以你应该java helloworld