作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道这种构造函数链调用在java中是否可行?我正在扩展 JButton 基类,我需要首先初始化 super 变量,然后使用默认构造函数初始化我的类。
public CustomButton(){
try {
URL inp = CustomButton.class.getResource("/icons/noa_en/buttonBackground.png");
background = ImageIO.read(inp);
} catch (IOException e) {
e.printStackTrace();
}
}
public CustomButton(ImageIcon img){
super(img);
this();
}
或:
public CustomButton(ImageIcon img){
this();
super(img);
}
最佳答案
您只能在构造函数中调用另一个构造函数作为您的第一个 Action 。因此,当您想在类的两个构造函数中调用不同的父类(super class)构造函数时,您必须将公共(public)代码重构为一个单独的方法:
public CustomButton() {
// implicitly calls super() here
setup();
}
public CustomButton(ImageIcon img) {
super(img);
setup();
}
private void setup() {
// your init code
}
关于java - 如何在一个 java 构造函数中调用 this() 和 super(sth)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19809322/
我是一名优秀的程序员,十分优秀!