af60681705
^KT-54792 Fixed ^KT-54801 ^KT-54800
30 lines
1.1 KiB
Plaintext
Vendored
30 lines
1.1 KiB
Plaintext
Vendored
class Class constructor() {
|
|
val arrayConst: Any = {1.toByte(), 2.toByte()}
|
|
val booleanConst: Boolean = true
|
|
val byteConst: Byte = 10.toByte()
|
|
val charConst: Char = \u0041 ('A')
|
|
val doubleConst: Double = 3.0.toDouble()
|
|
val enumConst: Weapon? = Weapon.ROCK
|
|
val floatConst: Float = 2.0.toFloat()
|
|
val intConst: Int = 30
|
|
val longConst: Long = 40.toLong()
|
|
val shortConst: Short = 20.toShort()
|
|
val stringConst: String = "abcd"
|
|
}
|
|
enum class Weapon private constructor() : Enum<Weapon> {
|
|
enum entry ROCK
|
|
enum entry PAPER
|
|
enum entry SCISSORS
|
|
}
|
|
val arrayConst: Any = {1.toByte(), 2.toByte()}
|
|
val booleanConst: Boolean = true
|
|
val byteConst: Byte = 10.toByte()
|
|
val charConst: Char = \u0041 ('A')
|
|
val doubleConst: Double = 3.0.toDouble()
|
|
val enumConst: Weapon? = Weapon.ROCK
|
|
val floatConst: Float = 2.0.toFloat()
|
|
val intConst: Int = 30
|
|
val longConst: Long = 40.toLong()
|
|
val shortConst: Short = 20.toShort()
|
|
val stringConst: String = "abcd"
|