您可以编写一个递归方法并在每个容器上递归:
该站点提供了一些示例代码:
public static List<Component> getAllComponents(final Container c) { Component[] comps = c.getComponents(); List<Component> compList = new ArrayList<Component>(); for (Component comp : comps) { compList.add(comp); if (comp instanceof Container) compList.addAll(getAllComponents((Container) comp)); } return compList;}
如果只需要直接子组件的组件,则可以将递归深度限制为2。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)