Rohde Fischer
02/21/2025, 10:05 AMinterface Foo {
val selfValue: String
fun doSomething(): String {
if (this::class == Foo::class) {
return "Foo"
} else {
return "${super.doSomething()}.$selfValue"
}
}
}
jw
02/21/2025, 2:02 PMRohde Fischer
02/24/2025, 10:11 AMCLOVIS
03/09/2025, 1:18 PM