更多解释:在编写常规的“HELLO WORD”代码时,我总是遇到这个错误——注意到编译没有任何错误(我的意思是在运行时出现这个错误)并且我使用 TEXTPAD 来编写 java 程序
代码是
class HelloWorld
{
public static void main (String args[])
{
System.out.println(“Hello World!”);
}
}
更多解释:在编写常规的“HELLO WORD”代码时,我总是遇到这个错误——注意到编译没有任何错误(我的意思是在运行时出现这个错误)并且我使用 TEXTPAD 来编写 java 程序
代码是
class HelloWorld
{
public static void main (String args[])
{
System.out.println(“Hello World!”);
}
}
从头开始的HelloWorld:
cd ~ mkdir test cd test
gedit HelloWorld.java
代码:
public class HelloWorld{
public static void main(String[] args){
System.out.println("Hello world!");
}
}
javac HelloWorld.java
java HelloWorld
输出:
你好世界!