PreviewTable.java~3~
上传用户:liming9091
上传日期:2014-10-27
资源大小:3376k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package russiagame;
  2. /**
  3.  * <p>Title: </p>
  4.  * <p>Description: </p>
  5.  * <p>Copyright: Copyright (c) 2003</p>
  6.  * <p>Company: </p>
  7.  * @author not attributable
  8.  * @version 1.0
  9.  */
  10. public class PreviewTable {
  11.   public static int[][] myTable; //储存标志0表示无,1表示有
  12.   public static int x; //横坐标
  13.   public static int y; //纵坐标
  14.   public PreviewTable() {
  15.   }
  16.   public PreviewTable(int x, int y) {
  17.     this.x = x;
  18.     this.y = y;
  19.   }
  20.   public static void main(String args[]) {
  21.     new PreviewTable();
  22.   }
  23. }