kotlin mutableListOf Collection

kotlin mutableListOf Collection

fun main(args: Array) {
    var str = mutableListOf()
    str.add("fly")
    str.add("zhang")
    myFun(str)
}

@Synchronized
fun myFun(c: Collection) {
    c.forEach {
        println(it)
    }
}

fly
zhang

try-cacth-finally ArrayIndexOutOfBoundsException,program go on,kotlin_zhangphil的博客-CSDN博客【代码】try-cacth-finally ArrayIndexOutOfBoundsException,program go on,kotlin。https://blog.csdn.net/zhangphil/article/details/129837973Java for循环删除ArrayList重复元素陷阱,Iterator迭代器遍历删除重复元素_zhangphil的博客-CSDN博客Java for循环删除ArrayList重复元素陷阱,Iterator迭代器遍历删除重复元素这是一个一不留神就犯下错误的Java列表ArrayList重复删除元素陷阱,并且问题比较隐蔽。问题描述,假设一个ArrayList存储若干个字符串String元素,这些元素中存在若干重复的、一模一样的元素,编程实现把这些重复元素全部删除。常见的代码写法是for循环定点删除: ArrayList mListhttps://blog.csdn.net/zhangphil/article/details/79755059Java的Vector,Stack,ArrayList,LinkedList异同_zhangphil的博客-CSDN博客Java的Vector,Stack,ArrayList,LinkedList异同Collection的实现子类型是什么,它都支持iterator()函数,该函数返回一个迭代器,该迭代器即可遍历访问Collection中每一个元素。Collection派生出来的两个接口类List和Set。List是有序的Collection。和Set不同,List允许有相同元素。List接口实现类...https://blog.csdn.net/zhangphil/article/details/91822423

你可能感兴趣的:(kotlin,kotlin)