j2se1.5的新特點(diǎn)XML:namespace prefix = o ns = "urn:schemas-microsoft-com:Office:office" />
溫州網(wǎng)站制作公司哪家好,找成都創(chuàng)新互聯(lián)!從網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、自適應(yīng)網(wǎng)站建設(shè)等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營(yíng)維護(hù)。成都創(chuàng)新互聯(lián)從2013年開始到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來(lái)保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選成都創(chuàng)新互聯(lián)。
List words = new ArrayList();
需要替換成:
List
這樣做的一個(gè)優(yōu)點(diǎn)是,如果你插入數(shù)組的數(shù)據(jù)類型不是字符串的話,你就可以在編譯的時(shí)候發(fā)現(xiàn)和解決這個(gè)bug。如果不使用上面的聲明,這個(gè)bug不可能在編譯的時(shí)候發(fā)現(xiàn),程序運(yùn)行后會(huì)出現(xiàn)ClassCastException 的錯(cuò)誤。
另一個(gè)好處是:你不在需要擔(dān)心集合中的元素超出了范圍:
String title = ((String) words.get(i)).toUppercase();
使用:
String title = words.get(i).toUppercase();
/**
* 從一個(gè)指定的集合中去掉一個(gè)4個(gè)字符的元素。
*/
static void expurgate(Collection c) {
for (Iterator i = c.iterator(); i.hasNext(); ) {
String s = (String) i.next();
if(s.length() == 4)
i.remove();
}
}
上面的代碼,有些缺陷,在運(yùn)行的過程中可能出錯(cuò)。比如:在集合中如果包含一個(gè)StringBuffer類型的數(shù)據(jù)。
以后可以這樣做:
static void expurgate(Collection
for (Iterator
if (i.next().length() == 4)
i.remove();
}
void cancelAll(Collection c) {
for (Iterator i = c.iterator(); i.hasNext(); ) {
TimerTask tt = (TimerTask) i.next();
tt.cancel();
}
}
現(xiàn)在可以這樣做:
void cancelAll(Collection c) {
for (object o : c)
((TimerTask)o).close();
}
注意:上面的冒號(hào),它表示:in。在C#中或者很自然的一個(gè)替代是:foreach 和in 。但是考慮到兼容性,我們沒有那樣做。
void cancelAll(Collection
for (TimerTask task : c)
task.cancel();
}
據(jù)個(gè)例子:
map數(shù)據(jù)類型的key用來(lái)存儲(chǔ)單詞,value用來(lái)存儲(chǔ)單詞重復(fù)的次數(shù)。這是一個(gè)計(jì)算單詞出現(xiàn)頻率的小程序。
public class Freq {
private static final Integer ONE = new Integer(1);
public static void main(String args[]) {
Map m = new TreeMap();
for (int i=0; i
Integer freq = (Integer) m.get(args[i]);
m.put(args[i], (freq==null ? ONE :
new Integer(freq.intValue() + 1)));
}
System.out.println(m);
}
}
下面是采用裝箱,泛型,和增強(qiáng)的for循環(huán)后的代碼:
public class Freq {
public static void main(String args[]) {
Map
for (String word : args)
m.put(word, m.get(word) + 1);
System.out.println(m);
}
}
需要注意:上面的程序假定拆箱為null的時(shí)候,值為0。
之二:
.NET/develop/read_article.asp?id=18442">http://www.csdn.net/develop/read_article.asp?id=18442