代码
提交代码
public class Course { // 类变量 courseType public static String courseType = "文字课程"; // 常量 COURSE_NAME public static final String COURSE_NAME = "Java 基础教程"; public static void main(String[] args) { // 分别打印类变量和常量 System.out.println(Course.courseType); System.out.println(Course.COURSE_NAME); } }
运行结果