settingparameters.java

来自「自己编写的扫雷游戏的源代码」· Java 代码 · 共 53 行

JAVA
53
字号
package findmines;/** * Title: * Description: * Copyright:    Copyright (c) 2004 * Company: * @author * @version 1.0 */public class SettingParameters {  int width=32;  int height=16;  int mines=99;  public  static int mineWidth=20;  public  static int displayHeight=40;  public static int borderWidth=2;  public SettingParameters() {  }  public void setParamWidth(int width)  {    this.width = width;  }  public void setParamHeight(int height)  {    this.height = height;  }  public void setParamMines(int mines)  {    this.mines = mines;  }  public int getParamWidth()  {    return this.width ;  }  public int getParamHeight()  {    return this.height ;  }  public int getParamMines()  {    return this.mines;  }}

⌨️ 快捷键说明

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