⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 previewtable.java

📁 下的我的项目(My Project / RussiaGame)中下载到执行程序以及源代码. 文中关于数据组成结构论述的已经很清楚了,我这里就具体的程序结构做一个简单的描述, 希望能够为有需要的朋友提供
💻 JAVA
字号:
package russiagame;

/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2003</p>
 * <p>Company: </p>
 * @author not attributable
 * @version 1.0
 */

public class PreviewTable {
    public static int[][] myTable; //储存标志0表示无,1表示有
    public static int x; //横坐标
    public static int y; //纵坐标

    public PreviewTable() {
    }

    public PreviewTable(int x, int y) {
        this.x = x;
        this.y = y;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -