俄罗斯方块代码JDK1.6调试通过调试结果如下:本程序建两个文件,分别命名为RussionBlockGame和Win;其中Win代码如下:importjava.awt.*;importjava.awt.event.*;importjava.awt.geom.*;importjavax.swing.*;publicclassWin{publicstaticvoidmain(String[]args){GameWinframe=newGameWin();frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);frame.setVisible(true);}publicstaticbooleanisplaying=true;}classGameWinextendsJFrame{publicGameWin(){this.setFocusable(true);getContentPane().requestFocus();this.setAlwaysOnTop(true);setTitle("superrussionBlock");setBounds(350,90,Default_X,Default_Y);setResizable(false);add(jpy1);jpy1.setDividerLocation(304);jpy1.setDividerSize(4);addKeyListener(jpy2);Threadt=newThread(jpy2);t.start();}publicstaticfinalintDefault_X=500;publicstaticfinalintDefault_Y=630;privateleftjpy2=newleft();privaterightjpy3=newright();privateJSplitPanejpy1=newJSplitPane(JSplitPane.HORIZONTAL_SPLIT,jpy2,jpy3);}classrightextendsJPanelimplementsActionListener{publicright(){initialframe();initialListener();}publicvoidinitialframe(){setLayout(null);add(jlArray[0]);jlArray[0].setBounds(30,60,70,30);jlArray[0].setFocusable(false);add(jlArray[1]);jlArray[1].setBounds(30,140,70,30);jlArray[1].setFocusable(false);add(jcArray[0]);jcArray[0].setBounds(100,60,70,30);jcArray[0].setFocusable(false);add(jcArray[1]);jcArray[1].setBounds(100,140,70,30);jcArray[1].setFocusable(false);add(jbArray[0]);jbArray[0].setBounds(50,240,100,35);jbArray[0].setFocusable(false);add(jbArray[1]);jbArray[1].setBounds(50,310,100,35);jbArray[1].setFocusable(false);add(jbArray[2]);jbArray[2].setBounds(50,380,100,35);jbArray[2].setFocusable(false);add(jbArray[3]);jbArray[3].setBounds(50,450,100,35);jbArray[3].setFocusable(false);}publicvoidinitialListener(){for(inti=0;i<4;i++)jbArray[i].addActionListener(this);}publicvoidactionPerformed(ActionEvente){if(e.getSource()==jbArray[0]){Win.isplaying=true;}elseif(e.getSource()==jbArray[1]){Win.isplaying=false;}elseif(e.getSource()==jbArray[2]){Win.isplaying=false;}elseif(e.getSource()==jbArray[3]){System.exit(0);}}privateString[]level={"1","2","3","4","5"};privateString[]color={"浅绿","浅黄","黑色"};privateJComboBox[]jcArray={newJComboBox(level),newJComboBox(color)};privateJLabel[]jlArray={newJLabel("游戏等级"),newJLabel("空间背景")};privateJButton[]jbArray={newJButton("开始游戏"),newJButton("暂停游戏"),newJButton("结束游戏"),newJButton("退出游戏")};}classleftextendsJComponentimplementsKeyListener,Runnable{publicleft(){game=newRussionBlockGame();}publicvoidpaintComponent(Graphicsg){Graphics2Dg2=(Graphics2D)g;super.paintComponent(g);doublewidth=300,height=600;Rectangle2Drect=newRectangle2D.Double(0,0,width,height);g2.setColor(Color.black);g2.draw(rect);g2.setColor(Color.yellow);g2.fill(rect);g2.setColor(Color.black);g2.draw(rect);for(inti=0;i<20;i++)for(intj=0;j<10;j++){if(game.judge(i,j)==true){Rectangle2Drect3=newRectangle2D.Double(j*boxSize,i*boxSize,boxSize,boxSize);g2.setColor(Color.black);g2.draw(rect3);g2.setColor(Color.red);g2.fill(rect3);g2.setColor(Color.black);g2.draw(rect3);}}game.notsure();}publicvoidkeyTyped(KeyEvente){}publicvoidkeyPressed(KeyEvente){if(Win.isplaying==false)return;switch(e.getKeyCode()){caseKeyEvent.VK_LEFT://LEFTgame.moveleft();movejudge();break;caseKeyEvent.VK_UP://UPgame.turnright();movejudge();break;caseKeyEvent.VK_RIGHT://RIGHTgame.moveright();...