有句名言,叫做10000小时成为某一个领域的专家。姑且不辩论这句话是否正确,让我们到达10000小时的时候再回头来看吧。
25 Hours.
Packages
Programs are organized as sets of packages.
The naming structure for packages is hierarchical.
The members of a package are class and interface types.
A package can be stored in a file system or in a database.
A package can be unnamed.
Import Declarations
单类型Import 声明
import java.io.IOException;
按需类型Import 声明
import java.io.*;
static import 声明
package hello; import static java.lang.System.out; import static java.util.Arrays.sort; import java.util.Arrays; public class Application { public static void main(String[] args) { int[] i = { 3, 1, 2 }; sort(i); out.print(Arrays.toString(i)); } }
比如说重复输入System.out.println() 是很累人的事情。
这个算是补上前面某一个疑问了。