Java应用程序冻结

时间:2015-03-08 20:33:40

标签: java eclipse refresh

我是java的新手。非常。就像我今天基本上开始一样我以前有其他语言的编程知识,比如c,c ++,PHP,javascript等,但是我无法解决这个问题。我开始在Youtube上观看有关如何使用Java制作视频游戏的教程(来自theChernoProject的视频),但是大约有7集,我遇到了一个问题,我们有窗口,我们在整个事物上画了一个黑色矩形,并且应用程序冻结了我的整个计算机。这是我的代码:

package com.darksun.theonetruemike.rain;

import java.awt.Canvas;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.image.BufferStrategy;

import javax.swing.JFrame;

public class Game extends Canvas implements Runnable{
    private static final long serialVersionUID = 1L;

    public static int width = 300;
    public static int height = width / 16 * 9;
    public static int scale = 3;

    private Thread thread;
    private JFrame frame;
    private boolean running = false;

    public Game(){
        Dimension size = new Dimension(width * scale, height * scale);
        setPreferredSize(size);

        frame = new JFrame();
    }

    public synchronized void start(){
        running = true;
        thread = new Thread(this, "Display");
        thread.start();
    }

    public synchronized void stop(){
        running = false;
        try{
            thread.join();
        } catch(InterruptedException e){
            e.printStackTrace();
        }
    }

    public void run(){
        while(running){
            update();
            render();
        }
    }

    public void update(){

    }

    public void render(){
        BufferStrategy bs = getBufferStrategy();

        if(bs == null){
            createBufferStrategy(3);
            return;
        }

        Graphics g = bs.getDrawGraphics();

        g.setColor(Color.BLACK);
        g.fillRect(0, 0, getWidth(), getHeight());

        g.dispose();
        bs.show();
    }

    public static void main(String args[]){
        Game game = new Game();
        game.frame.setResizable(false);
        game.frame.setTitle("Rain");
        game.frame.add(game);
        game.frame.pack();
        game.frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        game.frame.setLocationRelativeTo(null);
        game.frame.setVisible(true);

        game.start();
    }

}

我使用eclipse制作这个项目(严重违背我的意愿),当我按下Debug按钮时,窗口出现,我的电脑冻结,导致不得不强制退出整个计算机。请尽可能提供帮助,并提前感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

因为我的声誉很低,我会发表评论作为答案,尽量不要发送-rep

我将你的代码复制到netbeans,出现了像窗口一样的黑色控制台,没有任何反应,但它没有冻结,但是JVM使用了大约50%的cpu