• 大小: 92KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-06-29
  • 语言: Java
  • 标签:

资源简介

用java编写的一个俄罗斯方块小游戏 运用了很多关于继承什么的方法

资源截图

代码片段和文件信息

package com.Tetris;

import java.awt.image.BufferedImage;

public class Cell {
private int row;
private int col;
private BufferedImage image;

public Cell(int row int col BufferedImage image) {
super();
this.row = row;
this.col = col;
this.image = image;
}

public void drop(){
row++;
}
public void moveRight(){
col++;
}
public void moveLeft(){
col--;
}
public int getRow() {
return row;
}
public void setRow(int row) {
this.row = row;
}
public int getCol() {
return col;
}
public void setCol(int col) {
this.col = col;
}
public BufferedImage getImage() {
return image;
}
public void setImage(BufferedImage image) {
this.image = image;
}
@Override
public String toString() {
return row+““+col;
}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        810  2013-11-14 11:40  Tetris\Cell.java

     文件      28445  2013-11-16 15:36  Tetris\game-over.png

     文件       3008  2013-11-14 15:19  Tetris\I.png

     文件       3007  2013-11-14 15:19  Tetris\J.png

     文件       3000  2013-11-14 15:19  Tetris\L.png

     文件       3004  2013-11-14 15:19  Tetris\O.png

     文件       3000  2013-11-14 15:19  Tetris\S.png

     文件       2989  2013-11-14 15:19  Tetris\T.png

     文件      11471  2013-11-16 16:27  Tetris\Tetris.java

     文件      44394  2013-11-14 15:19  Tetris\tetris.png

     文件       5131  2013-11-16 14:40  Tetris\Tetromino.java

     文件       3006  2013-11-14 15:19  Tetris\Z.png

     目录          0  2013-12-03 18:44  Tetris

----------- ---------  ---------- -----  ----

               111265                    13


评论

共有 条评论