Java第一个例子

      Music 2005-6-3 14:44
配置好了系统,看一下最为精典的helloworld.java程序
代码如下:
引用:

class hellworld
{
public static void main(String [] args)
{
System.out.println("Helloworld");
}
}


进行命令提示符,运行javac helloworld.java
再运行java helloworld 屏幕上打印出“Helloworld”
好了,我们的程序运行完了,说一下注意事项!
1。java语言区分大小写。
2。java helloworld 执行的是helloworl类非helloworld.java文件。
3。class前有public 修饰,则java文件名要与主类名保持一致。
标签集:TAGS:
回复Comments() 点击Count()

回复Comments

{commentauthor}
{commentauthor}
{commenttime}
{commentnum}
{commentcontent}
作者:
{commentrecontent}