Java窗口是一個強大的工具,可以用來開發各種應用程序。在這篇文章中,我們將介紹如何使用Java窗口來創建一個簡單的應用程序,該程序可以選擇教師和學生。
import javax.swing.*; import java.awt.*; import java.awt.event.*; public class TeacherStudentChooser extends JFrame implements ActionListener { private JButton teacherButton; private JButton studentButton; public TeacherStudentChooser() { super("選擇教師或學生"); // 設置窗口大小 setSize(300, 150); // 設置窗口關閉按鈕行為 setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // 創建窗口布局 setLayout(new FlowLayout()); // 創建兩個按鈕 teacherButton = new JButton("教師"); studentButton = new JButton("學生"); // 添加按鈕到窗口 add(teacherButton); add(studentButton); // 注冊按鈕事件監聽器 teacherButton.addActionListener(this); studentButton.addActionListener(this); } public void actionPerformed(ActionEvent e) { if (e.getSource() == teacherButton) { JOptionPane.showMessageDialog(this, "您選擇了教師"); } else if (e.getSource() == studentButton) { JOptionPane.showMessageDialog(this, "您選擇了學生"); } } public static void main(String[] args) { TeacherStudentChooser chooser = new TeacherStudentChooser(); chooser.setVisible(true); } }
以上代碼使用了Java的Swing包來創建窗口和按鈕,以及注冊按鈕事件監聽器。當用戶點擊按鈕時,程序將彈出一個對話框,顯示用戶選擇了教師或學生。
在實際應用中,我們可以根據用戶的選擇來調用相應的功能模塊,從而實現更加復雜的應用程序。
上一篇python畫招財貓