變數不要用'$' (錢字號) 或 '_' (底線) , 作為開頭.
開頭之後可以為字母, 錢字號 , 數字 或底線.
命名要用有意義的全名, 不要用神秘的縮寫 , 讓程式碼好維護
例如 : int wheel , 比 int w, 來得好. 但是Java的關鍵字或是保留字
不可作為變數名稱.
假如變數是由兩個單字或以上所組成的 , 那麼第二個單字開始的字母必需要以大寫開頭
例如: iceCream , carWheel .
定義常數的話則是每個字母都要大寫 , 單字間要用底線連接
例如 : public static final String CAR_WHEEL = "car wheel"
下面是oracle網站列出的關鍵字和保留字, 列出供參考:
abstract |
continue |
for |
new |
switch |
assert *** |
default |
goto * |
package |
synchronized |
boolean |
do |
if |
private |
this |
break |
double |
implements |
protected |
throw |
byte |
else |
import |
public |
throws |
case |
enum **** |
instanceof |
return |
transient |
catch |
extends |
int |
short |
try |
char |
final |
interface |
static |
void |
class |
finally |
long |
strictfp ** |
volatile |
const * |
float |
native |
super |
while |
* | not used | |
** | added in 1.2 | |
*** | added in 1.4 | |
**** | added in 5.0 |
沒有留言:
張貼留言