如果我对多个按钮使用完全相同的代码行,我可以使用组件(在本例中为按钮)作为函数的参数而不是使用变量吗?这样我的工作就容易多了。如果我有这样的内容:
a1.setText("something");
a1.setBackground(Color.BLACK);
a1.setForeground(Color.WHITE);
a2.setText("something");
a2.setBackground(Color.BLACK);
a2.setForeground(Color.WHITE);
a3.setText("something");
a3.setBackground(Color.BLACK);
a3.setForeground(Color.WHITE);
我可以把它们变成一个函数吗?
public void buttonFunction(Button something){
something.setText("something");
something.setBackground(Color.BLACK);
something.setForeground(Color.WHITE);
}
如果我能,我怎么能?
是的。你所做的尝试就是做这件事的方法。
public void buttonFunction(JButton something){
something.setText("something");
something.setBackground(Color.BLACK);
something.setForeground(Color.WHITE);
}
您所需要做的就是在创建JButton对象之后调用这个函数。
当然可以。你可以把任何东西作为参数传递,甚至包括方法、类和类型。
1。这里有一个简单的方法可以完成你的要求:
public static Component setUpComponent(Component component){
if(component instanceof JButton){
JButton button = (JButton)component;
button.setText("something");
button.setBackground(Color.BLACK);
button.setForeground(Color.WHITE);
return button;
} else if(component instanceof <"Some other class, like JPanel">){
//do something else for that class
}
throw new Exception("Invalid Object");
return null;
}
你可以这样使用:
for(int index = 0; index <= 2; index++){
JButton button = new JButton();
setUpComponent(button);
//do whatever you want to do
}
2。你也可以创建一个方法,只给你一个现成的按钮:
public static JButton getButton(){
JButton button = new JButton("something");
button.setBackground(Color.BLACK);
button.setForeground(Color.WHITE);
return button;
}
你可以这样使用:
for(int index = 0; index <= 2; index++){
JButton button = setUpComponent(button);
//do whatever you want to do
}
3。但是在我看来,最好的方法是创建一个新的类并在那里设置按钮。像这样:
public class CustomButton extends JButton{
public CustomButton(){
this("something",Color.BLACK,Color.WHITE);
}
public CustomButton(String text, Color backColor, Color frontColor){
super(something);
setBackground(backColor);
setForeground(frontColor);
}
}
你可以这样使用:
for(int index = 0; index <= 2; index++){
JButton button = new CustomButton();
//same as:
//CustomButton button = new CustomButton();
//or
//JButton button = new CustomButton("something",Color.BLACK,Color.WHITE);
}