今天在写小练习的时候遇到一个小问题记录一下:
cannot be referenced from a static context
后查阅资料发现:main方法是一个static方法,class student是一个非静态的内部类,只能被该类的非静态方法访问。否则会报错。解决办法如下:
1.将class student移出public class类
2.在class student前面加上修饰符static
报错cannot be referenced from a static context小问题记录
最新推荐文章于 2024-03-21 19:15:46 发布