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.
我不想使用幻数。我正在为 jpanel 背景设置颜色,是否有可能使用颜色而不是
panel.setBackground(new color (255,255,255));
谢谢
颜色类具有最常见颜色的静态字段。您还可以将自己的颜色定义为常量,并在整个代码中使用它们。
Color myColor = new Color(1,2,3); panel.setBackground(Color.RED); panel.setBackground(myColor);
您可以使用 Color 类的静态字段。
例如:- 黑色,白色
panel.setBackground(Color.BLACK);