Basic Type
Scala provides nine predefined basic or scalar type, they are:
Boolean:
true,falseInt:
1String:
"hello"Unit:
()Char:
cLong:
100LShort:
100: ShortFloat:
31.4fDouble:
3.14d
Last updated
Was this helpful?
Scala provides nine predefined basic or scalar type, they are:
Boolean: true, false
Int: 1
String: "hello"
Unit: ()
Char: c
Long: 100L
Short: 100: Short
Float: 31.4f
Double: 3.14d
Last updated
Was this helpful?
Was this helpful?