您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)java如何實(shí)現(xiàn)簡(jiǎn)易的五子棋游戲的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。
本文實(shí)例為大家分享了java實(shí)現(xiàn)簡(jiǎn)易五子棋游戲的具體代碼,供大家參考,具體內(nèi)容如下
先上效果圖
1、五子棋游戲分析:
五子棋作為較為普遍且簡(jiǎn)易的娛樂(lè)游戲,受到眾多人的熱愛(ài),且五子棋AI也是一個(gè)較為容易實(shí)現(xiàn)的AI。下面我們先來(lái)分析游戲規(guī)則。(哈哈,雖然大家都知道,但我還是想寫(xiě)寫(xiě))雙方分別使用黑白兩色棋子,下在棋盤(pán)橫線交叉處,先連成五子者勝利。(黑棋禁手啥的規(guī)則在我的程序里沒(méi)加,就不贅述了)。
2、程序分析:
(1)首先,五子棋開(kāi)始,我們需要一個(gè)棋盤(pán),15*15的棋盤(pán),需要黑白棋子。
(2)其次,我們需要實(shí)現(xiàn)棋子順序的改變,就是實(shí)現(xiàn)先下黑棋,再下白棋,然后實(shí)現(xiàn)一個(gè)基本的修正功能,就是通過(guò)點(diǎn)擊交叉點(diǎn)周?chē)奈恢?,使棋子下到交叉處?br/>
(3)再之后呢,有了棋子棋盤(pán),(其實(shí)這個(gè)時(shí)候已經(jīng)能進(jìn)行下棋了,自己判斷勝負(fù),哈哈),但是呢,我們接下來(lái)需要加一個(gè)判斷輸贏的功能。
(4)接下來(lái),我們就來(lái)豐富我們的五子棋游戲,加一些功能鍵,例如重新開(kāi)始,悔棋,認(rèn)輸,計(jì)時(shí)啥啥啥的。
(5)最后來(lái)一個(gè)高級(jí)點(diǎn)的,就是實(shí)現(xiàn)人機(jī)對(duì)戰(zhàn),實(shí)現(xiàn)AI下棋。
1、棋盤(pán)棋子模塊
棋盤(pán)嘛就用直線畫(huà)就好,橫線15條,豎線15條,棋子也就兩個(gè),可以畫(huà)得花哨一點(diǎn),比如3D棋子,也可以簡(jiǎn)單一點(diǎn)就用填充圓就好。博主畫(huà)了一個(gè)黑色3D棋子,白的沒(méi)畫(huà)。(這里繼承了我之前的一個(gè)畫(huà)板,實(shí)現(xiàn)直線的重繪,可以去翻一翻我的之前有關(guān)畫(huà)板的博客)。創(chuàng)建一個(gè)二維數(shù)組,存放棋子,用1代表黑棋,2代表白棋,0代表沒(méi)棋。用count變量來(lái)計(jì)算到誰(shuí)下棋了,以及記錄下了第幾顆棋子了。
以下是窗體代碼
public void outUI(){ //設(shè)置標(biāo)題 this.setTitle("五子棋"); this.setSize(1680,1380); this.setLayout(null); JButton btn = new JButton(); JButton btn1 = new JButton(); JButton btn2 = new JButton(); JButton btn3 = new JButton(); JButton btn4 = new JButton(); btn.setBounds(1340, 780, 210, 65); btn1.setBounds(1340,860,210, 65); btn2.setBounds(1340,940,210, 65); btn3.setBounds(320,1200,210, 65); btn4.setBounds(780,1200,210, 65); //獲取一個(gè)圖片 ImageIcon square=new ImageIcon(this.getClass().getResource("JButton1.jpg")); ImageIcon square1=new ImageIcon(this.getClass().getResource("JButton.jpg")); ImageIcon square2=new ImageIcon(this.getClass().getResource("JButton2.jpg")); ImageIcon square3=new ImageIcon(this.getClass().getResource("JButton3.jpg")); ImageIcon square4=new ImageIcon(this.getClass().getResource("JButton4.jpg")); //設(shè)置圖片的大小 square.setImage(square.getImage().getScaledInstance(210, 65, 0)); square1.setImage(square1.getImage().getScaledInstance(210, 65, 0)); square2.setImage(square2.getImage().getScaledInstance(210, 65, 0)); square3.setImage(square3.getImage().getScaledInstance(210, 65, 0)); square4.setImage(square4.getImage().getScaledInstance(210, 65, 0)); //把圖片放到按鈕上 btn.setIcon(square); btn1.setIcon(square1); btn2.setIcon(square2); btn3.setIcon(square3); btn4.setIcon(square4); btn.setText("開(kāi)始"); btn1.setText("悔棋"); btn2.setText("認(rèn)輸"); btn3.setText("人機(jī)對(duì)戰(zhàn)"); btn4.setText("人人對(duì)戰(zhàn)"); this.add(btn); this.add(btn1); this.add(btn2); this.add(btn3); this.add(btn4); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setVisible(true); MyGameListen bn=new MyGameListen(); this.addMouseListener(bn); btn.addActionListener(bn); btn1.addActionListener(bn); btn2.addActionListener(bn); btn3.addActionListener(bn); btn4.addActionListener(bn); Graphics f= this.getGraphics(); AI Ai=new AI(); AI2 Ai2=new AI2(); AIPlus Ai3=new AIPlus(); bn.ai=Ai; bn.ai2=Ai2; bn.ai3=Ai3; bn.f1=f; Ai.f1=f; Ai2.f1=f; Ai3.f1=f; bn.sn=this; Ai.arr2=bn.arr; Ai2.arr2=bn.arr; Ai3.arr=bn.arr; arragain=bn.arr; showtime a=new showtime(); a.count1=bn.count; } int[][] arragain; @Override public void paint(Graphics g) { // TODO Auto-generated method stub super.paint(g); //加背景圖 ImageIcon square5=new ImageIcon(this.getClass().getResource("game.jpeg")); ImageIcon square6=new ImageIcon(this.getClass().getResource("title.jpg")); square5.setImage(square5.getImage().getScaledInstance( 1200,1162,0)); square6.setImage(square6.getImage().getScaledInstance( 366,683,0)); g.drawImage(square5.getImage(),40,60,this); g.drawImage(square6.getImage(),1280,100,366,683,this); for(int i=1;i<=15;i++) { g.drawLine(80, i*80, 1200, i*80); g.drawLine(i*80,80,i*80,1200); } g.drawLine(60,60 , 1220, 60); g.drawLine(60,60 , 60, 1220); g.drawLine(60, 1220, 1220,1220); g.drawLine(1220, 1220, 1220,60); g.fillOval(630, 630, 20, 20); g.fillOval(310, 950, 20, 20); g.fillOval(310, 310, 20, 20); g.fillOval(950, 950, 20, 20); g.fillOval(950, 310, 20, 20); // 繪制棋盤(pán) MyGameListen bn1=new MyGameListen(); bn1.f1=g; for(int i=0;i<arragain.length;i++) { for(int j=0;j<arragain.length;j++) { if(arragain[i][j]==1) { Blackchessman(i*80-40,j*80-40,g); } else if(arragain[i][j]==2) { whitechessman(i*80-40,j*80-40,g); } } } } public void Blackchessman(int x,int y,Graphics g) { for(int i=0;i<80;i++) { Color c=new Color(i*3,i*3,i*3); g.setColor(c); g.fillOval(x+i/3, y+i/3, 80-i, 80-i); } } public void whitechessman(int x,int y,Graphics g) { g.setColor(Color.white); g.fillOval(x,y,80,80); }
以下是鼠標(biāo)監(jiān)聽(tīng)器的代碼,這里有部分變量沒(méi)有給出,在文章末尾會(huì)附上完整代碼
public void mousePressed(MouseEvent e) { x1=e.getX();y1=e.getY(); m=correct(x1); n=correct(y1); if(x1<=1240&&y1<=1240) { if(arr[m/80][n/80]==0) { if(count%2!=0) { x1=e.getX();y1=e.getY(); m=correct(x1); n=correct(y1); Blackchessman(m-40,n-40); arr[m/80][n/80]=1; arr1[m/80][n/80]=count; count++; if( gobangiswin.isWin(arr, m/80, n/80)) { JOptionPane.showMessageDialog(null, "黑棋WIN?。?quot;); } //ai下棋 if(who==2) { ai3.playchess(); arr[ai3.q][ai3.w]=2; arr1[ai3.q][ai3.w]=count; count++; if( gobangiswin.isWin(arr,ai3.q ,ai3.w )) { JOptionPane.showMessageDialog(null, "白棋WIN?。?quot;); } } } else { x1=e.getX();y1=e.getY(); m=correct(x1); n=correct(y1); whitechessman(m-40,n-40); arr[m/80][n/80]=2; arr1[m/80][n/80]=count; count++; if( gobangiswin.isWin(arr, m/80, n/80)) { JOptionPane.showMessageDialog(null, "白棋WIN?。?quot;); } } } else return; } else { return;} }
2、位置修正
這個(gè)功能其實(shí)有很多種實(shí)現(xiàn)的方法,可以根據(jù)自己的棋盤(pán)位置啥的進(jìn)行修正。
public int correct(int x) { a=x/80; b=x%80; if(b<=40) { return a*80; } else return (a+1)*80; }
3、輸贏判斷
輸贏判斷的思路,大概是以下思路,通過(guò)點(diǎn)擊,下了最后一顆棋子以后,判斷該棋子是否使游戲結(jié)束了,就是下完這顆棋子后是否成功構(gòu)成五子連珠。因?yàn)檩斱A的判斷你 只需要判斷最后一步即可,因?yàn)檩斱A的勝負(fù)就在最后一步。所以,通過(guò)判斷最后一顆棋子的八個(gè)方向是否構(gòu)成五子連珠即可。
以下是判斷輸贏的代碼。
public class GobangIsWin { //判斷輸贏函數(shù) // 橫向 public int left_right(int[][] arr,int x,int y) { int con=1; //向右遍歷 for(int i=x+1;i<arr.length;i++) { if(arr[x][y]==arr[i][y]){ con++; } else break; } //向左遍歷 for(int i=x-1;i>0&&i<arr.length;i--) { if(arr[x][y]==arr[i][y]) { con++; } else break; } return con; } // 縱向 public int high_low(int[][] arr,int x,int y) { int con=1; //向下遍歷 for(int i=y+1;i<arr[0].length;i++) { if(arr[x][y]==arr[x][i]) { con++; } else break; } //向上遍歷 for(int i=y-1;i>0&&i<arr[0].length;i--) { if(arr[x][y]==arr[x][i]) { con++; } else break; } return con; } // 左斜 public int towQudrant_three(int[][] arr,int x,int y) { int con=1; int i=x,j=y; //向右上遍歷 for(int m=i+1,k=j-1;m<arr.length&&k>0&&m<i+5&&k>j-5;k--,m++) { if(x==15||y==1) { break; } else if(arr[x][y]==arr[m][k]) con++; else break; } //向左下遍歷 for(int m=i-1,k=j+1;k<arr.length&&m>0&&k<i+5&&m>j-5;k++,m--) { if(x==1||y==15) { break; } if(arr[x][y]==arr[m][k]) con++; else break; } return con; } // 右斜 public int one_fourwin(int[][] arr,int x,int y) { int con=1; int i=x,j=y; //向左上遍歷 for(int m=i-1,k=j-1;m>0&&k>0&&m>i-5&&k>j-5;k--,m--) { if(x==1||y==1) { break; } if(arr[x][y]==arr[m][k]) con++; else break; } //向右下遍歷 for(int m=i+1,k=j+1;k<arr.length&&m<arr.length&&m<i+5&&k<j+5;k++,m++) { if(x==15||y==15) { break; } if(arr[x][y]==arr[m][k]) con++; else break; } return con; } public boolean isWin(int[][] arr,int x,int y) { if(left_right(arr, x, y)>=5||high_low(arr, x, y)>=5||towQudrant_three(arr, x, y)>=5||one_fourwin(arr, x, y)>=5) { return true; }else { return false; } } }
4、我們?cè)賮?lái)加一點(diǎn)功能,這里有悔棋,重新開(kāi)始,認(rèn)輸?shù)墓δ堋?/strong>
重新開(kāi)始:我們清空我們存放棋子的數(shù)組即可,然后重新繪制棋盤(pán),將之前的棋盤(pán)覆蓋即可。
public void start() { sn.repaint(); for(int i=0;i<arr.length;i++) { for(int j=0;j<arr.length;j++) { arr[i][j]=0; } } count=1; }
悔棋:悔棋的思路:悔棋,我們可以和開(kāi)始一樣,先把之前的棋盤(pán)覆蓋掉,然后去除存放數(shù)組里的最后一個(gè)棋子即可,然后在新的棋盤(pán)上重新放下棋子(除了最后一個(gè)棋子)。
public void huiqi() { sn.repaint(); //去除最后一顆棋子 for(int i=0;i<arr1.length;i++) { for(int j=0;j<arr1.length ;j++) { if(arr1[i][j]==count-1) { arr1[i][j]=0; arr[i][j]=0; } if(arr1[i][j]==count-2&&who==2) { arr1[i][j]=0; arr[i][j]=0; } } } //重放棋子 for(int i=0;i<arr.length;i++) { for(int j=0;j<arr.length ;j++) { if(arr[i][j]==1) { Blackchessman(i*80-40,j*80-40); } else if(arr[i][j]==2) { whitechessman(i*80-40,j*80-40); } } } //控制下一顆棋子顏色 if(who==2) { count=count-2; } else if(who==1) { count=count-1; } }
認(rèn)輸功能:這個(gè)很簡(jiǎn)單就不說(shuō)了,判斷一下到誰(shuí)下點(diǎn)擊了認(rèn)輸就誰(shuí)輸就好。
5、最后來(lái)一個(gè)高級(jí)的,實(shí)現(xiàn)AI的功能,人機(jī)對(duì)戰(zhàn)。
這里有很多種實(shí)現(xiàn)人工智能的方法:
(1)權(quán)值法
(2)博弈樹(shù)
(3)機(jī)器學(xué)習(xí)
博主現(xiàn)在水平有限,只會(huì)權(quán)值算法,等博主學(xué)會(huì)后面兩種方法再來(lái)加~
權(quán)值法:這里用到了權(quán)值表,創(chuàng)建一個(gè)新的二維數(shù)組chessvalue[][]用于存放該點(diǎn)的權(quán)值。
HashMap<String,Integer> map = new HashMap<String,Integer>(); map.put("1",10); map.put("11",100); map.put("111",1000); map.put("1111",10000);
這里的HashMap類(lèi)是一種特殊的類(lèi),可以通過(guò)map.get(),將字符串放進(jìn)get方法中,通過(guò)比較map中的所有字符串,找到與之相對(duì)應(yīng)的權(quán)值,并返回這個(gè)值,這里指的注意的是,這里返回的數(shù)據(jù)類(lèi)型不是int型,而是Integer型,但是不必?fù)?dān)心,這個(gè)類(lèi)型也能實(shí)現(xiàn)累加。
接下來(lái)是查找棋型,通過(guò)查找該位置的八個(gè)方向的棋型,并對(duì)八個(gè)方向的權(quán)值進(jìn)行累加。最后通過(guò)找出最大的權(quán)值的位置,將棋子下到這個(gè)位置就好,這樣就基本實(shí)現(xiàn)AI功能了。
保存棋局的方法:通過(guò)String類(lèi)型的拼接功能實(shí)現(xiàn)棋局的保存。
注:在寫(xiě)這部分AI的時(shí)候,對(duì)于部分棋型沒(méi)有考慮到,難度水平大概處于低階至中階,對(duì)于部分難以通過(guò)遍歷八個(gè)方向進(jìn)行查找的,采用了聯(lián)合算法。例如,對(duì)于“22022”這樣的棋型,顯然需要通過(guò)左右兩邊的棋型綜合考慮,這里采用了聯(lián)合算法,遍歷完左右(上下)后進(jìn)行一次聯(lián)合判斷。
AI代碼
public class AIPlus { int arr[][]=null; int weightArray[][]=new int [16][16]; Graphics f1=null; //棋子相連情況的劃分 HashMap<String,Integer> map = new HashMap<String,Integer>();//設(shè)置不同落子情況和相應(yīng)權(quán)值的數(shù)組 public AIPlus() { //被堵住 map.put("01", 17);//眠1連 map.put("02", 12);//眠1連 map.put("001", 17);//眠1連 map.put("002", 12);//眠1連 map.put("0001", 17);//眠1連 map.put("0002", 12);//眠1連 map.put("0102",17);//眠1連,15 map.put("0201",12);//眠1連,10 map.put("0012",15);//眠1連,15 map.put("0021",10);//眠1連,10 map.put("01002",19);//眠1連,15 map.put("02001",14);//眠1連,10 map.put("00102",17);//眠1連,15 map.put("00201",12);//眠1連,10 map.put("00012",15);//眠1連,15 map.put("00021",10);//眠1連,10 map.put("01000",21);//活1連,15 map.put("02000",16);//活1連,10 map.put("00100",19);//活1連,15 map.put("00200",14);//活1連,10 map.put("00010",17);//活1連,15 map.put("00020",12);//活1連,10 map.put("00001",15);//活1連,15 map.put("00002",10);//活1連,10 //被堵住 map.put("0101",65);//眠2連,40 map.put("0202",60);//眠2連,30 map.put("0110",65);//眠2連,40 map.put("0220",60);//眠2連,30 map.put("011",65);//眠2連,40 map.put("022",60);//眠2連,30 map.put("0011",65);//眠2連,40 map.put("0022",60);//眠2連,30 map.put("01012",65);//眠2連,40 map.put("02021",60);//眠2連,30 map.put("01102",65);//眠2連,40 map.put("02201",60);//眠2連,30 map.put("00112",65);//眠2連,40 map.put("00221",60);//眠2連,30 map.put("01010",75);//活2連,40 map.put("02020",70);//活2連,30 map.put("01100",75);//活2連,40 map.put("02200",70);//活2連,30 map.put("00110",75);//活2連,40 map.put("00220",70);//活2連,30 map.put("00011",75);//活2連,40 map.put("00022",70);//活2連,30 //被堵住 map.put("0111",1500);//眠3連,100 map.put("0222",1400);//眠3連,80 map.put("01112",1500);//眠3連,100 map.put("02221",1400);//眠3連,80 map.put("01101",10000);//活3連,130 map.put("02202",8000);//活3連,110 map.put("01011",10000);//活3連,130 map.put("02022",8000);//活3連,110 map.put("01110", 10000);//活3連 map.put("02220", 8000);//活3連 map.put("01111",300000);//4連,300 map.put("02222",350000);//4連,280 } public void printArray(int[][] arr) { for(int i=1;i<arr.length;i++) { for(int j=1;j<arr.length ;j++) { System.out.print(arr[i][j]+" "); } System.out.println(); } } public Integer unionWeight(Integer a,Integer b ) { //必須要先判斷a,b兩個(gè)數(shù)值是不是null if((a==null)||(b==null)) return 0; //一一 else if((a>=10)&&(a<=25)&&(b>=10)&&(b<=25)) return 60; //一二、二一 else if(((a>=10)&&(a<=25)&&(b>=60)&&(b<=80))||((a>=60)&&(a<=80)&&(b>=10)&&(b<=25))) return 800; //一三、三一、二二 else if(((a>=10)&&(a<=25)&&(b>=140)&&(b<=1000))||((a>=140)&&(a<=1000)&&(b>=10)&&(b<=25))||((a>=60)&&(a<=80)&&(b>=60)&&(b<=80))) return 300000; //二三、三二 else if(((a>=60)&&(a<=80)&&(b>=140)&&(b<=1000))||((a>=140)&&(a<=1000)&&(b>=60)&&(b<=80))) return 300000; else return 0; } public void getvalue() { for(int i=0;i<arr.length;i++) { for(int j=0;j<arr[i].length;j++) { //首先判斷當(dāng)前位置是否為空 if(arr[i][j]==0) { //往左延伸 String ConnectType="0"; int jmin=Math.max(0, j-4); for(int positionj=j-1;positionj>=jmin;positionj--) { //依次加上前面的棋子 ConnectType=ConnectType+arr[i][positionj]; } //從數(shù)組中取出相應(yīng)的權(quán)值,加到權(quán)值數(shù)組的當(dāng)前位置中 Integer valueleft=map.get(ConnectType); if(valueleft!=null) weightArray[i][j]+=valueleft; //往右延伸 ConnectType="0"; int jmax=Math.min(14, j+4); for(int positionj=j+1;positionj<=jmax;positionj++) { //依次加上前面的棋子 ConnectType=ConnectType+arr[i][positionj]; } //從數(shù)組中取出相應(yīng)的權(quán)值,加到權(quán)值數(shù)組的當(dāng)前位置中 Integer valueright=map.get(ConnectType); if(valueright!=null) weightArray[i][j]+=valueright; //聯(lián)合判斷,判斷行 weightArray[i][j]+=unionWeight(valueleft,valueright); //往上延伸 ConnectType="0"; int imin=Math.max(0, i-4); for(int positioni=i-1;positioni>=imin;positioni--) { //依次加上前面的棋子 ConnectType=ConnectType+arr[positioni][j]; } //從數(shù)組中取出相應(yīng)的權(quán)值,加到權(quán)值數(shù)組的當(dāng)前位置中 Integer valueup=map.get(ConnectType); if(valueup!=null) weightArray[i][j]+=valueup; //往下延伸 ConnectType="0"; int imax=Math.min(14, i+4); for(int positioni=i+1;positioni<=imax;positioni++) { //依次加上前面的棋子 ConnectType=ConnectType+arr[positioni][j]; } //從數(shù)組中取出相應(yīng)的權(quán)值,加到權(quán)值數(shù)組的當(dāng)前位置中 Integer valuedown=map.get(ConnectType); if(valuedown!=null) weightArray[i][j]+=valuedown; //聯(lián)合判斷,判斷列 weightArray[i][j]+=unionWeight(valueup,valuedown); //往左上方延伸,i,j,都減去相同的數(shù) ConnectType="0"; for(int position=-1;position>=-4;position--) { if((i+position>=0)&&(i+position<=14)&&(j+position>=0)&&(j+position<=14)) ConnectType=ConnectType+arr[i+position][j+position]; } //從數(shù)組中取出相應(yīng)的權(quán)值,加到權(quán)值數(shù)組的當(dāng)前位置 Integer valueLeftUp=map.get(ConnectType); if(valueLeftUp!=null) weightArray[i][j]+=valueLeftUp; //往右下方延伸,i,j,都加上相同的數(shù) ConnectType="0"; for(int position=1;position<=4;position++) { if((i+position>=0)&&(i+position<=14)&&(j+position>=0)&&(j+position<=14)) ConnectType=ConnectType+arr[i+position][j+position]; } //從數(shù)組中取出相應(yīng)的權(quán)值,加到權(quán)值數(shù)組的當(dāng)前位置 Integer valueRightDown=map.get(ConnectType); if(valueRightDown!=null) weightArray[i][j]+=valueRightDown; //聯(lián)合判斷,判斷行 weightArray[i][j]+=unionWeight(valueLeftUp,valueRightDown); //往左下方延伸,i加,j減 ConnectType="0"; for(int position=1;position<=4;position++) { if((i+position>=0)&&(i+position<=14)&&(j-position>=0)&&(j-position<=14)) ConnectType=ConnectType+arr[i+position][j-position]; } //從數(shù)組中取出相應(yīng)的權(quán)值,加到權(quán)值數(shù)組的當(dāng)前位置 Integer valueLeftDown=map.get(ConnectType); if(valueLeftDown!=null) weightArray[i][j]+=valueLeftDown; //往右上方延伸,i減,j加 ConnectType="0"; for(int position=1;position<=4;position++) { if((i-position>=0)&&(i-position<=14)&&(j+position>=0)&&(j+position<=14)) ConnectType=ConnectType+arr[i-position][j+position]; } //從數(shù)組中取出相應(yīng)的權(quán)值,加到權(quán)值數(shù)組的當(dāng)前位置 Integer valueRightUp=map.get(ConnectType); if(valueRightUp!=null) weightArray[i][j]+=valueRightUp; //聯(lián)合判斷,判斷行 weightArray[i][j]+=unionWeight(valueLeftDown,valueRightUp); } } } } int q=0,w=0; public void playchess() { getvalue(); //取出最大的權(quán)值 int weightmax=0; for(int i=0;i<arr.length;i++) { for(int j=0;j<arr.length;j++) { if(weightmax<weightArray[i][j]) { weightmax=weightArray[i][j]; q=i; w=j; } } } whitechessman(q*80-40, w*80-40); for(int i=0;i<weightArray.length;i++) { for(int j=0;j<weightArray.length;j++) { weightArray[i][j]=0; } } } public void whitechessman(int x,int y) { f1.setColor(Color.white); f1.fillOval(x,y,80,80); } }
感謝各位的閱讀!關(guān)于“java如何實(shí)現(xiàn)簡(jiǎn)易的五子棋游戲”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。