?? movieformat.java
字號(hào):
/* MovieFormat - very simple helper class * Copyright 2001, Bruce E. Wampler */public class MovieFormat{ private static String[] values = { "VHS", "DVD", "VCD", "SVCD", "Hi8", "DV", "Other" }; public static int indexOf(String str) { for (int ix = 0 ; ix < values.length ; ++ix) if (values[ix].equals(str)) return ix; return 0; } public static String stringAt(int at) { if (at < 0 || at >= values.length) return "Other"; return values[at]; } public static String[] getNames() { return values; }}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -