Cannot use this in a static context

Posted 一路向南

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Cannot use this in a static context相关的知识,希望对你有一定的参考价值。

在main函数中使用了this后,会提示出错。

原因是在main函数中不能使用this,main函数属于static,main中必须生成一个确定的对象来调用方法,凡是属于static的,this均不能用。

 

我想在main方法中执行 :URL url = this.getClass().getResource("/images/user.jpg"); 报错。

修改后:URL url = Test.class.getClassLoader().getClass().getResource("/images/user.jpg"); 

Test.class.getClassLoader().getClass()得到了一个实例,所以可以调用。

以上是关于Cannot use this in a static context的主要内容,如果未能解决你的问题,请参考以下文章

错误代码1833 Cannot change column used in a foreign

iOS之报错“Cannot create __weak reference in file using manual reference counting”解决办法

Workspace in use or cannot be created, choose a different one.–解决办法

我的Java开发学习之旅------>Workspace in use or cannot be created, choose a different one.--错误解决的方法

晚上打开eclipse时碰到这个问题 :Workspace in use or cannot be created, choose a different one.

GO 智能合约cannot use transactionRecordId + strconv.Itoa(id) (type string) as type byte in append(示例代码(代