有一个\d没有写成\\d,修改下
写错了 仔细检查一下
/*
* 游戏窗体类
*/
public class GameFrame extends JFrame {
public static void main(String[] args) {
GameFrame frame = new GameFrame();
frame.setVisible(true);// 显示窗体
GamePanel panel =new GamePanel(frame);//方便调用键盘监听器
panel.action();//调用启动游戏的方法
frame.add(panel);
frame.setVisible(true);
//调用背景音乐类中的方法
String filepath = "D:\\javagame\\飞机大战\\img\\game_music.wav";
musicStuff musicObject = new musicStuff();
musicObject.playMusic(filepath);
}
//构造方法设置窗体
public GameFrame() {
setTitle("全民飞机大战");// 设置标题
setSize(512, 768);//设置窗体大小
setLocationRelativeTo(null);// 相对于屏幕左上角居中
setResizable(false);// 设置不允许玩家拖动界面
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//关闭游戏时把进程也关掉
}
}
——————————————————————————————————————————————————————————