标签:入门 bsp 语句 static 系统 必须 自动 hello 参数
public class Hello{
//公共 类 类名
public static void main(String[] args){
// 公共 静态 无返回值 主方法(字符串[] 参数)
System.out.println("helloworld");
// 系统.输出.打印换行(输出内容);
// 输出语句,首字母必须大写,println为输出内容后自动换行,print输出内容不换行
}
}
标签:入门 bsp 语句 static 系统 必须 自动 hello 参数
原文地址:http://www.cnblogs.com/52doudou/p/7460845.html