从静态方法返回一个类对象

我正在使用 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());

   }    

}


梦里花落0921
浏览 314回答 3
3回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java