在使用GUI时,是否可以使用一个JTextArea
语句添加许多看到.add()
个实例?
我的整个起床时间超过60,并希望在没有60 +语句的情况下添加em。我试过谷歌,但没有找到任何东西。我无法真正掌握一些官方文档,它们似乎触动了我的头脑。
答案 0 :(得分:1)
您可以尝试将它们放入List<JTextArea> areaList
,然后使用foreach循环添加它们。
private void addTextAreas(List<JTextArea> areaList)
{
for(JTextArea textArea : areaList)
{
// "something" is the element you want to add them to
something.add(textArea);
}
}