목록type (1)
어흥
[Kotlin] Type 처리 방법
1. 타입 캐스팅 타입 비교 형변환 Java instanceof / !(A instanceof B) (타입) Kotlin is / !is as 타입 [Java] public String getName(Object obj){ if(obj instanceof Person){ Person person = (Person) obj return person.getName(); } return ""; } [Kotlin] fun getName(obj: Any): String { if(obj is Person){ return obj.name() } return "" } 2. 특이한 타입 1) Any - 모든 객체의 최상위 타입(Primitive, Reference Type 모두의 최상위) 자바의 Object와 비슷하지만..
Kotlin
2022. 7. 25. 16:32