想做游戏的小白 2022-01-30 11:12 采纳率: 80%
浏览 129
已结题

为什么这段代码IDEA标红,运行时没报错。

问题遇到的现象和发生背景

public class Plane extends GameObject这句被IDEA标红

问题相关代码,请勿粘贴截图

GameObject类

package com.bjsxt;
import java.awt.*;
public class GameObject {
        /**
         * 对应的图片
         */
        Image img;
        int x,y;
        /**
         * 移动速度
         */
        int speed;
        /**
         * 物体的宽度,高度
         */
        int width,hejght;
        public GameObject(){}

    /**
     * 画自己
     */
    public void drawMyself(Graphics g){
        g.drawImage(img,x,y,width,hejght,null);
    }
    public Rectangle getRec(){
            return new Rectangle(x,y,width,hejght);
    }
    public GameObject(Image img, int x, int y, int speed, int width, int hejght) {
        this.img = img;
        this.x = x;
        this.y = y;
        this.speed = speed;
        this.width = width;
        this.hejght = hejght;
    }

    public GameObject(Image img, int x, int y, int speed) {
        this(img,x,y);
        this.speed = speed;
    }

    public GameObject(Image img, int x, int y) {
        this(img);
        this.x = x;
        this.y = y;
    }

    public GameObject(Image img) {
        this.img = img;
        if (this.img!=null){
            this.width= img.getWidth(null);
            this.hejght=img.getHeight(null);
        }
    }
}

Plane类:

package com.bjsxt;
import java.awt.*;
//下面那句被IDEA标红。
public class Plane extends GameObject{
    public static void main(String[] args) {
        System.out.println("111");
    }
}
运行结果及报错内容

IDEA标红理由:
Cannot access com.bjsxt.GameObject

我的解答思路和尝试过的方法

被气的没思路。

我想要达到的结果

我想让它不红。

  • 写回答

1条回答 默认 最新

  • Zl_? 2022-01-30 11:22
    关注

    这玩意儿经常卡,清下缓存重启试一下

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 2月12日
  • 已采纳回答 2月4日
  • 修改了问题 1月30日
  • 创建了问题 1月30日

悬赏问题

  • ¥15 请问各位,如何在Jetson nano主控板的Ubuntu系统中安装PyQt5
  • ¥15 MAC安装佳能LBP2900驱动的网盘提取码
  • ¥400 微信停车小程序谁懂的来
  • ¥15 ATAC测序到底用什么peak文件做Diffbind差异分析
  • ¥15 安装ubantu过程中第一个vfat 文件挂载失败
  • ¥20 GZ::CTF如何兼容一些靶机?
  • ¥15 etcd集群部署问题
  • ¥20 谁可以帮我一下问一下各位
  • ¥15 为何重叠加权后love图的SMD与svyCreateTableOne函数绘制基线表的不一致
  • ¥150 求 《小魔指》街机游戏机整合模拟软件