While 循环 kotlin(11)

While 循环
while do .. while 照常使用

while (x > 0) {
  x--
}

 

do {

  val y = retrieveData()
} while (y != null) // y 在此处可见

使用方式跟java C++等基本没有什么区别

posted on 2018-02-01 11:39  wp7ers  阅读(116)  评论(0编辑  收藏  举报