?? toto.java
字號:
public class Toto {
private int[] array;
public Toto(int size) {
array= new int[size];
}
public String getHelloWorld() {
return "Hello World";
}
public boolean getTruth() {
return true;
}
public void setElement(int position, int value) throws ArrayIndexOutOfBoundsException {
array[position] = value;
}
public int getElement(int position) throws ArrayIndexOutOfBoundsException {
//synchronized(Toto.class);
return array[position];
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -