标签:style blog ar color sp java div log as
第一个程序:
//第一个hello world程序。 class HelloWorld { public static void main(String[] args) { System.out.println("Hello World!"); } }
编写此程序时,把main(String[] args)写成main(String args[])后程序依然正常运行,此为数组的两种声明方法,是等效的。里面只要声明一个数组即可,数组名没有特别要求。
命令行下运行:java HelloWorld.class,程序会抛出错误:找不到或无法加载主类 HelloWorld.class。程序把HelloWorld.class当做一个类来处理,实际并不存在这么一个类,因此抛出错误,运行时不可加.class的后缀名。
标签:style blog ar color sp java div log as
原文地址:http://www.cnblogs.com/jianmo-o/p/4121236.html