Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 GUI 时,是否可以使用一条语句添加许多、已看到JTextArea的实例?.add()
JTextArea
.add()
我的整个设置中有 60 多个,并且想在没有 60 多个语句的情况下添加它们。我尝试了谷歌但没有找到任何东西。我无法真正掌握一些官方文档,它们似乎让我摸不着头脑。
您可以尝试将它们放入 a 中List<JTextArea> areaList,然后使用 foreach 循环添加它们。
List<JTextArea> areaList
private void addTextAreas(List<JTextArea> areaList) { for(JTextArea textArea : areaList) { // "something" is the element you want to add them to something.add(textArea); } }