11
หลายตัวแปรให้ใน Kotlin
มีวิธีใดบ้างในการเชื่อมโยงหลายตัวให้กับตัวแปรที่เป็นโมฆะหลายตัวใน kotlin? fun example(first: String?, second: String?) { first?.let { second?.let { // Do something just if both are != null } } } ฉันหมายถึงสิ่งนี้: fun example(first: String?, second: String?) { first?.let && second?.let { // Do something just if both are != null } }
127
kotlin