public class TestFile {
public static void main(String[] args) {
// TODO Auto-generated method stub
FileSystem filesystem = FileSystems.getDefault();
Iterable<FileStore> stores = filesystem.getFileStores();
for(FileStore store:stores)
System.out.println(store.name());
}
}
簡單來說,for (a : b)是表示對集合b進行迭代,冒號前面的變量代表冒號後面集合變量中的一項
具體參考:http://www.cnblogs.com/elleniou/archive/2012/04/27/2473050.html
我就不重復了。