java,super.draw(p); Cannot use super in a static context,错哪了啊?已把父类的draw()的static去掉
发布网友
发布时间:2022-04-24 22:28
我来回答
共1个回答
热心网友
时间:2023-10-13 08:35
静态方法中,不可以使用super所以,不要使用静态修饰
写一个测试的方法,在main中new一个实例,执行方法
Java getGraphics()方法的空指针异常
Creates a graphics context for this component. This method will return null if this component is currently not displayable.Overrides:getGraphics in class Component Returns:a graphics context for this component, or null if it has none 注意最后一句,返回值有可能是null jpanel、jframe等各种...