我的类Component有问题。问题是我的椭圆没有改变它们的颜色。函数if是在类Counter中观察OVF标志。当OVF = true时,椭圆应为红色,当OVF = false时,椭圆应为白色。在我的GUI中我只能看到红色椭圆(即使OVF = false)。我尝试添加repaint()命令但红色椭圆只开始闪烁。这是我的代码:
import java.awt.*;
import javax.swing.*;
import java.util.Observable;
public class Komponent extends JComponent
{
Counter counter3;
public Komponent()
{
counter3=new Counter();
}
public void paint(Graphics g)
{
Graphics2D dioda = (Graphics2D)g;
int x1 = 85;
int x2 = 135;
int y = 3;
int width = (getSize().width/9)-6;
int height = (getSize().height-1)-6;
if (counter3.OVF = true)
{
dioda.setColor(Color.RED);
dioda.fillOval(x1, y, width, height);
dioda.fillOval(x2, y, width, height);
}
if (counter3.OVF = false)
{
dioda.setColor(Color.WHITE);
dioda.fillOval(x1, y, width, height);
dioda.fillOval(x2, y, width, height);
}
}
public static void main(String[] arg)
{
new Komponent();
}
}
该代码出了什么问题?
答案 0 :(得分:0)
如果应该:
if (counter3.OVF == true) { // watch out for = and ==
// red
}
if (counter3.OVF == false) {
// white
}
或更简单:
if (counter3.OVF) {
// red
} else {
// white
}
或最简单:
dioda.setColor(counter3.OVF ? Color.RED : Color.WHITE);
dioda.fillOval(x1, y, width, height);
dioda.fillOval(x2, y, width, height);