?? showscorecommand.java
字號:
package controller.command;
/**
*
* <p>Title: </p>
* 顯示分數命令
* <p>Description: </p>
* 將分數轉為可以顯示的字符串
*/
public class ShowScoreCommand {
/**
* 將分數轉為可以顯示的字符串
* @param score float 分數
* @return String 字符串
*/
public String excute(float score){
String s = new String();
s = s.valueOf(score);
return s;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -