gpt4 book ai didi

java - getContentPane() 返回 null

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

我有一个扩展 JFrame 的类。在它的构造函数中我调用 getContentPane()并将其存储在Container中。然而,getContentPane()似乎返回 null,如 System.out.println(container)打印“null”并调用 container.setLayout(new BorderLayout)抛出空指针异常。

一些示例代码:

public class Example extends JFrame implements ... {
public Example(){
Container container = getContentPane();
System.out.println(container); //prints "null"
container.setLayout(new BorderLayout()); //throws nullpointerexception

另外,请调用setLayout在类本身上(即 this.setLayout() )也会抛出 NullPointerException ,但如果我正确理解文档,这是因为在框架上调用它只是将其委托(delegate)给框架的 contentPane 。我正在使用 Eclipse,它没有指出任何警告或错误。该异常不是很有帮助,因为它只追溯到两个级别(实例化类的 main() 到 setLayout() 调用)。

如果有必要,我可以发布我的整个代码,但我不想这样做,因为这是为了类作业,我不希望反作弊软件标记它。

最佳答案

发现问题了。当我在 Eclipse 中创建该类时,它自动生成了一堆方法,其中一个是 getContentPane()。自动生成的方法只是返回 null,这导致了我的问题。我摆脱了所有自动生成的方法,现在它可以工作了。

关于java - getContentPane() 返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16160233/

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