數組遍歷 和 迭代器遍歷的區別

循環數組時候若是要對數組進行add、remove操做,採用 迭代器的遍歷,web list的遍歷一般有三種方式:數組 1,普通的數組遍歷svg for (int i = 0; i < args.length; i++) { } 2,增強型數組遍歷ui for (String string : args) { } 3,迭代器遍歷this while (it.hasNext()) {
相關文章
相關標籤/搜索