java setenabled_JButton的Java子类重写了setEnabled方法的问题

我有一个名为ImageButton的自定义按钮类,它扩展了JButton.在其中我有一个我想要调用的setEnabled方法而不是JButton的setEnabled方法.

我的代码如下.在我的另一个类中,我创建了一个ImageButton的新实例,但是当我尝试使用setEnabled方法时,它会直接进入JButton的setEnabled方法.甚至在我运行代码之前,我的IDE就告诉我从未使用过ImageButton的setEnabled方法.如果我将方法更改为“SetOn”,它可以正常工作.那么为什么我不能使用与超类相同的名字呢?我认为它应该隐藏超类方法,如果它是相同的名称?

public class ImageButton extends JButton{

public ImageButton(ImageIcon icon){

setSize(icon.getImage().getWidth(null),icon.getImage().getHeight(null));

setIcon(icon);

setMargin(new Insets(0,0,0,0));

setIconTextGap(0);

setBorderPainted(true);

setBackground(Color.black);

setText(null);

}

public void setEnabled(Boolean b){

if (b){

setBackground(Color.black);

} else {

setBackground(Color.gray);

}

super.setEnabled(b);

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值