结肠在Java中是什么意思?

Java中冒号是什么意思?我有这个:
public static List<String> findAllAnagrams(List<String> words) {
    List<String> result = new LinkedList<String>();
    for(String i : words){
        for (String j : words){
            if (result.contains(i)) {
                break;
            }
            else if (i == j) {

            } else {
                if (areAnagrams(i,j)){
                    result.add(i);
                    System.out.println(result);
                }
            }
        }
    }          
    return result;
}

解决方法

这意味着一件事,它是一个增强的循环.
for (String i: words)

意思是相同的东西

for (int i = 0; i < words.length; i++) {
    //
}

约书亚·布洛赫(Joshua Bloch)在他有价值的Java中的第46项中说:

The for-each loop,introduced in release 1.5,gets rid of the clutter and the opportunity for error by hiding the iterator or index variable completely. The resulting idiom applies equally to collections and arrays:

The preferred idiom for iterating over collections and arrays

for (Element e : elements) {
    doSomething(e);
}

When you see the colon (:),read it as “in.” Thus,the loop above reads as “for each element e in elements.” Note that there is no performance penalty for using the for-each loop,even for arrays. In fact,it may offer a slight performance advantage over an ordinary for loop in some circumstances,as it computes the limit of the array index only once. While you can do this by hand (Item 45),programmers don’t always do so.

相关文章

最近看了一下学习资料,感觉进制转换其实还是挺有意思的,尤...
/*HashSet 基本操作 * --set:元素是无序的,存入和取出顺序不...
/*list 基本操作 * * List a=new List(); * 增 * a.add(inde...
/* * 内部类 * */ 1 class OutClass{ 2 //定义外部类的成员变...
集合的操作Iterator、Collection、Set和HashSet关系Iterator...
接口中常量的修饰关键字:public,static,final(常量)函数...