摘要: int a = 10;int b = 11;int c = a > b ? a : b;到了 kotlin中 val a = 10val b = 11val c = if (a > b) a else b 阅读全文
posted @ 2019-01-17 17:08 GLORY-HOPE 阅读(18663) 评论(0) 推荐(0) 编辑