?? terreristinfo.java
字號:
public class TerreristInfo
{
private static final int MAX_LIVES = 3;
private String name;
private int id;
private int numLives;
public TerreristInfo(String nm, int id)
{ name = nm;
this.id = id;
numLives = MAX_LIVES;
}
public String getName()
{ return name; }
public int getID()
{ return id; }
public int getNumLives()
{ return numLives; }
public boolean loseALife()
{
if (numLives > 0) {
numLives--;
return true;
}
else // can't set to negative
return false;
} // end of loseALife()
} // end of PenguinInfo class
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -