原本的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
网友评论