第一个java程序"helloworld!" public class helloworld { // 第二行的内容是万年不变的固定写法,代表main方法 // 这一行代表程序执行的起点 public static void main(String[] args){ // 第三行代表打印输出语句(其实就是屏幕显示) System.out.println("===oh my love==="); } } 运行结果