java按鈕控件數組完成盤算器界面示例分享。本站提示廣大學習愛好者:(java按鈕控件數組完成盤算器界面示例分享)文章只能為提供參考,不一定能成為您想要的結果。以下是java按鈕控件數組完成盤算器界面示例分享正文
思緒以下:
創立一個類,經由過程extends使其繼續窗體類JFrame;
創立一個JFrame對象,應用JFrame類的setVisible()辦法設置窗體可見;
在結構函數中,應用super()辦法繼續父類的結構辦法;
應用setTitle()辦法設置窗體的題目;
應用setBounds()辦法設置窗體的顯示地位及年夜小;
應用setDefaultCloseOperation()辦法設置窗體封閉按鈕的舉措為加入;
應用GridLayout創立網格結構治理器對象;
應用GridLayout類的setHgap()辦法設置組件的程度間距;
應用GridLayout類的setVgap()辦法設置組件的垂直間距;
創立JPanel容器對象;
經由過程JPanel類的setLayout()辦法設置容器采取網格結構治理器;
創立一個字符串型二維數組,初始化其值為盤算器上對應按鈕上顯示的值;
創立一個JButton型二維數組,並為其分派和之前的字符串型二維數組對應的空間;
遍歷字符串型二維數組,對它的每一個元素都將其賦值給JButton型二維數組中的對應按鈕,並對每一個按鈕添加事宜,使得點擊按鈕時在文本輸出框中顯示對應的值,最初應用JPanel類的add()辦法將按鈕添加到面板中。
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.SwingConstants;
import javax.swing.UIManager;
public class ButtonArrayExample extends JFrame { // 繼續窗體類JFrame
/**
*
*/
private static final long serialVersionUID = 6626440733001287873L;
private JTextField textField;
public static void main(String args[]) {
try {
UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel");
} catch (Throwable e) {
e.printStackTrace();
}
ButtonArrayExample frame = new ButtonArrayExample();
frame.setVisible(true); // 設置窗體可見,默許為弗成見
}
public ButtonArrayExample() {
super(); // 繼續父類的結構辦法
BorderLayout borderLayout = (BorderLayout) getContentPane().getLayout();
borderLayout.setHgap(20);
borderLayout.setVgap(10);
setTitle("按鈕數組完成盤算器界面 "); // 設置窗體的題目
setBounds(100, 100, 290, 282); // 設置窗體的顯示地位及年夜小
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // 設置窗體封閉按鈕的舉措為加入
textField = new JTextField();
textField.setHorizontalAlignment(SwingConstants.TRAILING);
textField.setPreferredSize(new Dimension(12, 50));
getContentPane().add(textField, BorderLayout.NORTH);
textField.setColumns(10);
final GridLayout gridLayout = new GridLayout(4, 0); // 創立網格結構治理器對象
gridLayout.setHgap(5); // 設置組件的程度間距
gridLayout.setVgap(5); // 設置組件的垂直間距
JPanel panel = new JPanel(); // 取得容器對象
panel.setLayout(gridLayout); // 設置容器采取網格結構治理器
getContentPane().add(panel, BorderLayout.CENTER);
String[][] names = { { "1", "2", "3", "+" }, { "4", "5", "6", "-" }, { "7", "8", "9", "×" }, { ".", "0", "=", "÷" } };
JButton[][] buttons = new JButton[4][4];
for (int row = 0; row < names.length; row++) {
for (int col = 0; col < names.length; col++) {
buttons[row][col] = new JButton(names[row][col]); // 創立按鈕對象
buttons[row][col].addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
JButton button = (JButton) e.getSource();
String text = textField.getText();
textField.setText(text + button.getText());
}
});
panel.add(buttons[row][col]); // 將按鈕添加到面板中
}
}
}
}