What Does The Colon Mean In Java?

前端 未结 5 966
北海茫月
北海茫月 2020-12-09 12:05

What does the colon mean in Java? I have this:

public static List findAllAnagrams(List words) {
    List result =          


        
5条回答
  •  感情败类
    2020-12-09 12:58

    (String i : words)
    

    For each item in words

    : to indicate iterator item and item as i

    so to answer - it represents for-each loop

提交回复
热议问题