在eclipse中创建第一个java应用程序,并在控制台输出“hello world”。

package com.fs.test;

public class HelloWorld {
	
	public void aMethod() {
		
	}

	public static void main(String[] args) {
		System.out.print("Hello world");
		
	}

}

  

猜你喜欢

转载自www.cnblogs.com/ooo888ooo/p/11042700.html