所以,我知道有这个:
int number = Integer.parseInt("5");
String numtxt = Integer.toString(12);
double number = Double.parseDouble("4.5");
String numbertxt = Double.toString(8.2);
String letter = Character.toString('B');
char letter = "stringText".charAt(0);
so on...
但我不知道如何使String值动态调用现有的JButton变量名;它甚至可能吗?
让我们说,我有4个JButton叫做btn1,btn2,btn3和btnFillNumber;
我创建了一个名为buttonName的字符串;
package testing;
public class Testing extends javax.swing.JFrame {
String buttonName;
int num;
public Testing() {
initComponents();
}
@SuppressWarnings("unchecked")
// Generated Code <<<-----
private void btnFillNumberActionPerformed(java.awt.event.ActionEvent evt) {
for(num = 1; num <= 3; num++){
buttonName = "btn" + Integer.toString(num);
JButton.parseJButton(buttonName).setText(num);
}
}
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
// Look and feel stteing code (optional) <<<-----
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new Testing().setVisible(true);
}
});
}
// Variables declaration - do not modify
private javax.swing.JButton btn1;
private javax.swing.JButton btn2;
private javax.swing.JButton btn3;
private javax.swing.JButton btnFillNumber;
// End of variables declaration
}
我知道没有JButton.parseJButton(),我只是不想做复杂的解释,我只想从String转换来动态调用JButton的变量名。
见:
for(num = 1; num <= 3; num++){
buttonName = "btn" + Integer.toString(num);
JButton.parseJButton(buttonName).setText(num);
}
我想使用带
的字符串进行循环我可以简单地做到这一点,但如果我得到25或更多呢?这就是我想要的循环......
btn1.setText("1");
btn2.setText("2");
btn3.setText("3");
请注意,这些JButton的值在某种程度上不一定是增量的。
输出:
我真正的发展:
P.S。我用来在NetBeans Design中制作JFrame(只需点击并拖动调色板窗口中的对象,如JPanel,JButton等,所以除了制作我自己的逻辑方法外,我不会手动输入代码;而且我无法编辑代码在源视图中的灰色背景中,由设计视图自动创建,但在设计视图中。如果您有提示和指南,我将很乐意)。
答案 0 :(得分:2)
使用地图:
private Map<String,JButton> buttonMap = new HashMap<String,JButton>();
在构造函数中添加按钮:
buttonMap.add("btn1", btn1);
buttonMap.add("btn2", btn2);
buttonMap.add("btn3", btn3);
buttonMap.add("btn4", btn4);
在你的动作中,Listener / Loop无论是什么:
String buttonName = "btn1"; //should be parameter or whatever
JButton button = buttonMap.get(buttonName);
作为替代方案,你也可以设置一个JButton数组:
JButton[] buttons = new JButton[4];
button[0] = new JButton(); //btn1
button[1] = new JButton(); //btn2
button[2] = new JButton(); //btn3
button[3] = new JButton(); //btn4
并访问它
JButton but = button[Integer.parseInt(buttonString)-1];
或者利用向UI元素添加自定义属性的可能性(你需要一个JComponent)
getContentPane().putClientProperty("btn1", btn1);
后来检索whith
JButton but = (JButton)getContentPane().getClientProperty("btn1");
答案 1 :(得分:-1)
我同意凯文的评论。最好的具体Map<K,V>
类可能是Hashtable<K,V>
。您甚至不需要创建按钮名称,只需将整数与它相关联(如果它们都已编号(如果btnFillNumber
可以是0
)。
Hashtable<Integer,JButton> buttonTable = new Hashtable<>();
// Fill buttonTable with buttons
JButton button = buttonTable.get(num);
if (button != null) {
// Do something with button
}
由于自动装箱,您无需创建Integer
个对象来查询哈希表,num
可以是int
原语。