https://kotlinlang.org logo
e

erkan

02/23/2016, 8:45 PM
Hi! In kotlin we need to instantiate multiple function abstract classes with
Copy code
object: MyClass {
   override fun a() {}
   override fun b() {}
   override fun c() {}
}
if I want to do stuff in just say function
Copy code
b
and omit the others, how can I achieve this in an elegant way with kotlin?