gpt4 book ai didi

java - 如何解决 "cannot make a static reference to the non-static method"?

转载 作者:行者123 更新时间:2023-12-01 19:45:12 24 4
gpt4 key购买 nike

我对“getClass”有问题,Eclipse 写了这样的消息:“无法从 Object 类型对非静态方法 getClass() 进行静态引用”

这是代码:

 public static void main(String[] args) {
JFrame f = new JFrame();
File path = new File(getClass().getResource("/resources/image.jpg").getFile());
BufferedImage image = ImageIO.read(path);

谢谢!

最佳答案

(如果您的类名称是 Main 那么)使用 Main.class.getResource 而不是 this.getClass.getResource

阅读this了解更多详情。

关于java - 如何解决 "cannot make a static reference to the non-static method"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53641486/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com