gpt4 book ai didi

swing - 遍历 Jframe 中的所有对象

转载 作者:行者123 更新时间:2023-12-04 22:36:54 26 4
gpt4 key购买 nike

我有一个简单的问题。我有一个用 javax.swing.JFrame 制作的项目。我想遍历我在 Jframe 中添加的所有对象。这可能吗,我该怎么做?

最佳答案

这将遍历 JFrame 的 contentPane 中的所有组件并将它们打印到控制台:

public void listAllComponentsIn(Container parent)
{
for (Component c : parent.getComponents())
{
System.out.println(c.toString());

if (c instanceof Container)
listAllComponentsIn((Container)c);
}
}

public static void main(String[] args)
{
JFrame jframe = new JFrame();

/* ... */

listAllComponentsIn(jframe.getContentPane());
}

关于swing - 遍历 Jframe 中的所有对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10271116/

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