📄 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 + -