當前位置:成語大全網 - 書法字典 - java語言中遍歷集合的方式是什麽?

java語言中遍歷集合的方式是什麽?

java語言中遍歷集合的方法;

方法壹:使用叠代器進行遍歷。

收藏& lt字符串& gt?c?=?新的?HashSet & lt字符串& gt();

c . add(" Java ");

c . add(" CPP ");

c . add(" PHP ");

c . add(" c# ");

c . add(" objective-c ");

叠代器& lt字符串& gt?它?=?c . iterator();

什麽時候?(it.hasNext())?{

字符串?str?=?it . next();

system . out . println(str);

}方法二:用for來遍歷。

收藏& lt字符串& gt?c?=?新的?HashSet & lt字符串& gt();

c . add(" Java ");

c . add(" CPP ");

c . add(" PHP ");

c . add(" c# ");

c . add(" objective-c ");

為了什麽?(字符串?str?:?c)?{

system . out . print(str . toupper case()?+?"?");

}