kotlin表达式作为值返回

2019-07-15  本文已影响0人  Mis丶H

原本的java风格代码

 if (data.isNullOrEmpty()) { // 为空
            syncTime = System.currentTimeMillis() / 1000
        } else {
            syncTime = data[0].time
        }

系统纠正后

 syncTime = if (data.isNullOrEmpty()) { // 为空
            System.currentTimeMillis() / 1000
        } else {
            data[0].time
        }

hahhahahahah

上一篇下一篇

猜你喜欢

热点阅读