?? sortimporter.java
字號:
package com.sun.tiger.staticimport;
import java.util.Arrays;
/** Uncommenting this next line creates a namespace error
* import com.oreilly.tiger.ch08.Arrays;
*/
import static java.util.Arrays.sort;
import static java.util.Collections.sort;
public class SortImporter {
public static void main(String[] args) {
float[] f = new float[] {5, 4, 6, 3, 2, 1};
sort(f);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -