java制作简单的小游戏
时间: 2023-08-18 14:05:02 浏览: 75
Java 是一个非常适合开发小游戏的编程语言,以下是一个简单的 Java 小游戏实现示例:
```java
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class SimpleGame extends JFrame implements ActionListener {
private JButton button;
private JLabel label;
private int score;
public SimpleGame() {
super("Simple Game");
setSize(300, 200);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel panel = new JPanel();
getContentPane().add(panel);
label = new JLabel("Score: 0");
panel.add(label);
button = new JButton("Click me!");
button.addActionListener(this);
panel.add(button);
setVisible(true);
}
public void actionPerformed(ActionEvent e) {
score++;
label.setText("Score: " + score);
if (score == 10) {
JOptionPane.showMessageDialog(this, "You win!");
System.exit(0);
}
}
public static void main(String[] args) {
new SimpleGame();
}
}
```
这个小游戏很简单,它提供了一个按钮,每次点击按钮得分加 1,当得分达到 10 分时弹出一个消息框表示你赢了。这里使用的是 Java Swing 库来创建用户界面,JOptionPane 类用于显示消息框。
阅读全文