为什么不能用类名引用?
public class Test{ public static void main(String[] args){
Student st=new Student();
Test.st.exam();
}
}
class Student{
public void exam(){
System.out.println("考试啦 。。。。。");
}
}
===========以下是编译提示===============================
Test.java:6: 错误: 找不到符号
Test.st.exam();
^
符号: 变量 st
位置: 类 Test
1 个错误