结肠在Java中是什么意思?

前端之家收集整理的这篇文章主要介绍了结肠在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.

原文链接:https://www.f2er.com/java/126357.html

猜你在找的Java相关文章