如何覆盖JLabel的颜色和字体?

时间:2016-06-26 02:23:51

标签: java jlabel

我需要创建一个具有自定义颜色和字体的类XLabel

我需要所有JLabels具有以下效果

 JLabelTest.setFont(new Font("Comic Sans MS", Font.BOLD, 20)); 
 JLabelTest.setForeground(Color.PINK);  

这就是我试过的

public class XLabel extends JLabel {

    @Override 
    public void setFont(Font f)
       {
        super.setFont(new Font("Comic Sans MS", Font.BOLD, 20));
         repaint();
        }

    @Override 
    public void setForeground(Color fg)
       {  
        super.setForeground(Color.PINK); 
         repaint();
       }     
}

但是,当我尝试使用它时XLabel test= new XLabel("test")无法编译,因为构造函数XLabel (String )未定义。但它扩展了JLabel,因此它应该继承它的所有构造函数。为什么不呢?如何设置自定义颜色和字体?

1 个答案:

答案 0 :(得分:1)

您不需要覆盖这些方法。 JLabel是一个抽象类,因此XLabel会自动继承这些方法。从XLabel类中删除这些方法,并尝试在构造函数中指定前景和字体。

public class XLabel extends JLabel {

public XLabel(String text) {
    super(text);
    this.setForeground(Color.BLACK);
    this.setFont(new Font("Comic Sans MS", Font.BOLD, 20));
}

然后,每当您创建XLabel的实例时,都会自动调用方法setForeground()setFont()。这使得XLabel的任何实例都具有粉红色和字体Comic Sans。