gpt4 book ai didi

java - 我需要几乎以这种方式设置JButton颜色,Help :

转载 作者:行者123 更新时间:2023-12-02 10:52:29 25 4
gpt4 key购买 nike

我很新,我不知道如何在同一行代码中设置颜色,我需要它是这一行,因为它被循环覆盖,而或者如果有其他方法,我将不胜感激如果你告诉我,谢谢。

add(new JButton(new PersonAction(new Person(miResultSet.getString("name"), miResultSet.getString("identification"))),setBackground(Color.yellow)));

最佳答案

如果您想以整洁的方式完成此操作,请使用多于一行的行并在单个语句中创建所需的每个对象:

while (someConditionIsTrue) {
// create a Person passing some parameters
Person p = new Person(miResultSet.getString("name"),
miResultSet.getString("identification"));
// create a PersonAction with the recently created person as parameter
PersonAction pa = new PersonAction(p);
// create the JButton passing the PersonAction as parameter
JButton jb = new JButton(pa);
// set the background of the JButton
jb.setBackground(Color.YELLOW)));
// add it to wherever it is to be added
someThing.add(jb);
}

这将使阅读和调试变得更加容易......

关于java - 我需要几乎以这种方式设置JButton颜色,Help :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52059214/

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