美文网首页
Kotlin使用循环结构

Kotlin使用循环结构

作者: Mutoou | 来源:发表于2017-08-01 11:52 被阅读0次

    1.for循环

    //方法1
    for(arg in args){
        //TODO 
    }
    
    //方法2
    for(arg in args)
    //TODO
    
    //方法3,直接使用索引
    for (i in array.indices) {
        print(array[i])
    }
    
    //方法4,直接根据索引获取值
    for ((index, value) in array.withIndex()) {
        println("the element at $index is $value")
    }
    

    2.while循环

    while (x > 0) {
        x--
    }
    
    do {
        val y = retrieveData()
    } while (y != null) // y is visible here!
    

    相关文章

      网友评论

          本文标题:Kotlin使用循环结构

          本文链接:https://www.haomeiwen.com/subject/npkjlxtx.html