我正在使用 static 关键字。我已经声明了一个返回类型为类的静态方法。当我从 main 方法访问此方法时,出现以下错误。如何从此方法返回对象?error: non-static variable this cannot be referenced from a static context return this;以下是我的代码public class StaticKeyword{ public static StaticKeyword run(){ return this; } public static void main(String args[]){ System.out.println(StaticKeyword.run()); } }
添加回答
举报
0/150
提交
取消