微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

结肠在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.jb51.cc/java/126357.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐