报错cannot be referenced from a static context的解决方法

时间:2024-05-21 22:15:38

直接贴上代码
报错cannot be referenced from a static context的解决方法报错cannot be referenced from a static context的解决方法直接上代码图,后认识到main方法是一个static方法,class Clerk是一个非静态的内部类,只能被该类的非静态方法访问。否则会报错。

解决方法:

1.在class前加上static

2.将该类移出来。