Create an account

Very important

  • To access the important data of the forums, you must be active in each forum and especially in the leaks and database leaks section, send data and after sending the data and activity, data and important content will be opened and visible for you.
  • You will only see chat messages from people who are at or below your level.
  • More than 500,000 database leaks and millions of account leaks are waiting for you, so access and view with more activity.
  • Many important data are inactive and inaccessible for you, so open them with activity. (This will be done automatically)


Thread Rating:
  • 465 Vote(s) - 3.49 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Kotlin - KClass<*> from KType

#1
In Kotlin, I can obtain a `KType` from a `KClass<*>` like so:

Int::class.createType()

> kotlin.Int

How do I do the reverse and obtain the `KClass<Int>` from a `KType` representing a `kotlin.Int`?
Reply

#2
You can use [`KType.classifier`](

[To see links please register here]

) for this:

val intType : KType = Int::class.createType()
val intClassifier : KClassifier? = intType.classifier
assertEquals(Int::class, intClassifier) // true

Note that since 1.3.40 you can also (at least on the JVM) use the experimental [`typeOf<Int>()`](

[To see links please register here]

) to get your [`KType`](

[To see links please register here]

). You may want to have a look at the [1.3.40-announcement](

[To see links please register here]

) to see whether that might be useful to you.

Speaking of the JVM: on the JVM you can also use [`KType.jvmErasure`](

[To see links please register here]

) to get the actual class as also [marstran](

[To see links please register here]

) pointed out in the comment.
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

©0Day  2016 - 2023 | All Rights Reserved.  Made with    for the community. Connected through