Kotlin Operators: Kotlin has a set of operators to perform arithmetic, task, comparison operators, and more. You will learn to use these operators in this tutorial.
Operators are special characters which perform the procedure on operands (values or variable). There are different sorts of operators accessible in Kotlin.
Operators are special symbols (characters) that complete procedure on operands (variables and values). For instance, + is an operator that performs addition.
In the Java variables tutorial, you learned to declare variables and assign values to variables. Presently, you will learn to use operators to perform different procedure on them.
In this article, you will learn-
- 1 1. Arithmetic Operators
- 2 Example: Arithmetic Operators
- 3 Example: Concatenation of Strings
- 4 How arithmetic operators actually work?
- 5 2. Assignment Operators
- 6 Example: Assignment Operators
- 7 3. Unary prefix and Increment / Decrement Operators
- 8 Example: Unary Operators
- 9 4. Comparison and Equality Operators
- 10 Example: Comparison and Equality Operators
- 11 5. Logical Operators
- 12 Example: Logical Operators
- 13 6. in Operator
- 14 Example: in Operator
- 15 7. Index access Operator
- 16 Example: Index access Operator
- 17 8. Invoke Operator
- 18 Bitwise Operation
1. Arithmetic Operators
Here’s a list of arithmetic operators in Kotlin:
Operator | Meaning |
---|---|
+ | Addition (also used for string concatenation) |
– | Subtraction Operator |
* | Multiplication Operator |
/ | Division Operator |
% | Modulus Operator |
Example: Arithmetic Operators
fun main(args: Array<String>) { val number1 = 12.5 val number2 = 3.5 var result: Double result = number1 + number2 println("number1 + number2 = $result") result = number1 - number2 println("number1 - number2 = $result") result = number1 * number2 println("number1 * number2 = $result") result = number1 / number2 println("number1 / number2 = $result") result = number1 % number2 println("number1 % number2 = $result") }
At the point when you run the program, the output will be:
number1 + number2 = 16.0 number1 - number2 = 9.0 number1 * number2 = 43.75 number1 / number2 = 3.5714285714285716 number1 % number2 = 2.0
The + operator is additionally used for the concatenation of String values.
Example: Concatenation of Strings
fun main(args: Array<String>) { val start = "Talk is cheap. " val middle = "Show me the code. " val end = "- Linus Torvalds" val result = start + middle + end println(result) }
At the point when you run the program, the output will be:
Talk is cheap. Show me the code. - Linus Torvalds
How arithmetic operators actually work?
Assume, you are using + arithmetic operator to add two numbers an and b.
Under the hood, the expression a + b calls a.plus(b) part work. The plus operator is over-burden to work with String values and other essential data types (except from Char and Boolean).
// + operator for basic types operator fun plus(other: Byte): Int operator fun plus(other: Short): Int operator fun plus(other: Int): Int operator fun plus(other: Long): Long operator fun plus(other: Float): Float operator fun plus(other: Double): Double // for string concatenation operator fun String?.plus(other: Any?): String
You can likewise use the + operator to work with user-characterized types (like objects) by over-burdening plus () function.
Here’s a table of arithmetic operators and their corresponding functions:
Expression | Function name | Translates to |
a + b | plus | a.plus(b) |
a – b | minus | a.minus(b) |
a * b | times | a.times(b) |
a / b | div | a.div(b) |
a % b | mod | a.mod(b) |
2. Assignment Operators
Task administrators are utilized to allocate worth to a variable. We have effectively utilized straightforward task administrator = previously.
val age = 5
Here, 5 is assigned to variable age using = operator.
Here’s a list of all assignment operators and their corresponding functions:
Expression | Equivalent to | Translates to |
a +=b | a = a + b | a.plusAssign(b) |
a -= b | a = a – b | a.minusAssign(b) |
a *= b | a = a * b | a.timesAssign(b) |
a /= b | a = a / b | a.divAssign(b) |
a %= b | a = a % b | a.modAssign(b) |
Example: Assignment Operators
fun main(args: Array<String>) { var number = 12 number *= 5 // number = number*5 println("number = $number") }
At the point when you run the program, the output will be:
number = 60
3. Unary prefix and Increment / Decrement Operators
Here’s a table of unary operators, their meaning, and corresponding functions:
Operator | Meaning | Expression | Translates to |
+ | Unary plus | +a | a.unaryPlus() |
– | Unary minus (inverts sign) | -a | a.unaryMinus() |
! | not (inverts value) | !a | a.not() |
++ | Increment: increases value by1 | ++a | a.inc() |
— | Decrement: decreases value by 1 | –a | a.dec() |
Example: Unary Operators
fun main(args: Array<String>) { val a = 1 val b = true var c = 1 var result: Int var booleanResult: Boolean result = -a println("-a = $result") booleanResult = !b println("!b = $booleanResult") --c println("--c = $c") }
At the point when you run the program, the output will be:
-a = -1 !b = false --c = 0
4. Comparison and Equality Operators
Here’s a table of equality and comparison operators, their meaning, and corresponding functions:
Operator | Meaning | Expression | Translates to |
> | greater than | a > b | a.compareTo(b) > 0 |
< | less than | a < b | a.compareTo(b) < 0 |
>= | greater than or equals to | a >= b | a.compareTo(b) >= 0 |
<= | less than or equals to | a < = b | a.compareTo(b) <= 0 |
== | is equal to | a == b | a?.equals(b) ?: (b === null) |
!= | not equal to | a != b | !(a?.equals(b) ?: (b === null)) |
Comparison and equity operators are used in the control flow, for example, if articulation, when articulation, and loops.
Example: Comparison and Equality Operators
fun main(args: Array<String>) { val a = -12 val b = 12 // use of greater than operator val max = if (a > b) { println("a is larger than b.") a } else { println("b is larger than a.") b } println("max = $max") }
At the point when you run the program, the output will be:
b is larger than a. max = 12
5. Logical Operators
There are two logical operators in Kotlin: || and &&
Here’s a table of logical operators, their meaning, and corresponding function .
Operator | Description | Expression | Corresponding Function |
|| | true if either of the Boolean expression is true | (a>b)||(a<c) | (a>b)or(a<c) |
&& | true if all Boolean expressions are true | (a>b)&&(a<c) | (a>b)and(a<c) |
Note that, or and are functions that support infix notation..
Logical operators are used in control flow, for example, if articulation, when articulation, and loops.
Example: Logical Operators
fun main(args: Array<String>) { val a = 10 val b = 9 val c = -1 val result: Boolean // result is true is a is largest result = (a>b) && (a>c) // result = (a>b) and (a>c) println(result) }
At the point when you run the program, the output will be:
true
6. in Operator
The in operator is used to check whether an object belongs to a collection.
Operator | Expression | Translates to |
in | a in b | b.contains(a) |
!in | a !in b | !b.contains(a) |
Example: in Operator
fun main(args: Array<String>) { val numbers = intArrayOf(1, 4, 42, -3) if (4 in numbers) { println("numbers array contains 4.") } }
At the point when you run the program, the output will be:
numbers array contains 4.
7. Index access Operator
Here are a few articulations using index access operator with coresponding functions in Kotlin.
Expression | Translated to |
a[i] | a.get(i) |
a[i, n] | a.get(i, n) |
a[i1, i2, …, in] | a.get(i1, i2, …, in) |
a[i] = b | a.set(i, b) |
a[i, n] = b | a.set(i, n, b) |
a[i1, i2, …, in] = b | a.set(i1, i2, …, in, b) |
Example: Index access Operator
fun main(args: Array<String>) { val a = intArrayOf(1, 2, 3, 4, - 1) println(a[1]) a[1]= 12 println(a[1]) }
At the point when you run the program, the output will be:
2 12
8. Invoke Operator
Here are some expressions using invoke operator with corresponding functions in Kotlin.
Expression | Translated to |
a() | a.invoke() |
a(i) | a.invoke(i) |
a(i1, i2, …, in) | a.inkove(i1, i2, …, in) |
a[i] = b | a.set(i, b) |
In Kotlin, parenthesis are translated to call invoke member function.
Bitwise Operation
Unlike Java, there are no bitwise and bitshift operators in Kotlin. To play out these assignments, different functions (supporting infix notation) are used:
- shl – Signed shift left
- shr – Signed shift right
- ushr – Unsigned shift right
- and – Bitwise and
- or – Bitwise or
- xor – Bitwise xor
- inv – Bitwise inversion
Additionally, there is no ternary administrator in Kotlin dissimilar to Java.
Thanks for reading! We hope you found this tutorial helpful and we would love to hear your feedback in the Comments section below. And show us what you’ve learned by sharing your photos and creative projects with us.