gpt4 book ai didi

java - 将 JLabel 属性添加到匿名变量类型?

转载 作者:行者123 更新时间:2023-12-02 00:05:51 25 4
gpt4 key购买 nike

我正在尝试向 JLabels 添加边框,但我没有它们的名称,它们是在循环内创建的,并且“this”关键字没有执行我想要的操作。

for(int i = 1; i < first; i++){
this.setBorder(BorderFactory.createLineBorder(Color.black));
dayBoxes.add(new JLabel(""));
}

我希望空白 JLable 具有除没有文本之外的属性。

如果 JLabels 都有名称,我可以轻松执行 name.setBorder,但这里的情况并非如此,我认为在数组中命名它们的效率非常低。有办法实现吗?

最佳答案

for(int i = 1; i < first; i++) {
JLabel label = new JLabel("");
label.setBorder(BorderFactory.createLineBorder(Color.black));
dayBoxes.add(label);
}

关于java - 将 JLabel 属性添加到匿名变量类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13896089/

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