Javatpoint Logo
Javatpoint Logo

Kotlin Data Type

Data type (basic type) refers to type and size of data associated with variables and functions. Data type is used for declaration of memory location of variable which determines the features of data.

In Kotlin, everything is an object, which means we can call member function and properties on any variable.

Kotlin built in data type are categorized as following different categories:

  • Number
  • Character
  • Boolean
  • Array
  • String

Number Types

Number types of data are those which hold only number type data variables. It is further categorized into different Integer and Floating point.

Data Type Bit Width (Size) Data Range
Byte 8 bit -128 to 127
Short 16 bit -32768 to 32767
Int 32 bit -2,147,483,648 to 2,147,483,647
Long 64 bit -9,223,372,036,854,775,808 to +9,223,372,036,854,775,807
Float 32 bit 1.40129846432481707e-45 to 3.40282346638528860e+38
Double 64 bit 4.94065645841246544e-324 to 1.79769313486231570e+308

Character (Char) Data Type

Characters are represented using the keyword Char. Char types are declared using single quotes ('').

Data Type Bit Width (Size) Data Range
Char 4 bit -128 to 127

Example

Boolean Data Types

Boolean data is represented using the type Boolean. It contains values either true or false.

Data Type Bit Width (Size) Data Value
Boolean 1 bit true or false

Example

Array

Arrays in Kotlin are represented by the Array class. Arrays are created using library function arrayOf() and Array() constructor. Array has get (), set() function, size property as well as some other useful member functions.

Creating Array using library function arrayOf()

The arrayOf() function creates array of wrapper types. The item value are passed inside arrayOf() function like arrayOf(1,2,3) which creates an array[1,2,3].

The elements of array are accessed through their index values (array[index]). Array index are start from zero.

Creating Array using Array() constructor

Creating array using Array() constructor takes two arguments in Array() constructor:

  1. First argument as a size of array, and
  2. Second argument as the function, which is used to initialize and return the value of array element given its index.

String

String in Kotlin is represented by String class. String is immutable, which means we cannot change the elements in String.

String declaration:

Types of String

String are categorize into two types. These are:

1. Escaped String: Escape String is declared within double quote (" ") and may contain escape characters like '\n', '\t', '\b' etc.

2. Raw String: Row String is declared within triple quote (""" """). It provides facility to declare String in new lines and contain multiple lines. Row String cannot contain any escape character.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA