详解 Hello World 应用程序
源码
class HelloWorldApp {
public static void main(String[] args) {
System.out.println("Hello World!"); // Display the string.
}
}
分析
Hello World 由以下部分组成:
- 代码注释
- 类定义
- main方法
注释
编译器忽略注释,但有益于其他程序员阅读
注释包括:
- 多行注释
格式 /* text */
即使换行,其中内容也会被忽略- 文档注释
格式 /** document **/
javadoc 命令使用该注释,生成代码文档
详见Javadoc™ tool documentation- 单行注释
格式 // text
该注释不能换行
类定义
基本格式:
class ClassName{
}
附:
1、注意,类的命名有一定规则
main 方法
格式:
public static void main(String[] args)
其中,args 是当前系统传递给应用的信息
以下命令可实现传递:
java MyApp arg1 arg2
每个字符串,都称为 命令行参数
命令行参数
通过命令行参数,可以不用重新编译,即可影响应用的操作
如,传递排序方式,排序应用按其排列