VOOZH about

URL: https://www.geeksforgeeks.org/kotlin/kotlin-operators/

⇱ Kotlin Operators - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Kotlin Operators

Last Updated : 10 May, 2025

Operators are the symbols that operate on values to perform specific mathematical or logical computations on given values. They are the foundation of any programming language.

👁 KOTLIN-OPERATORS


Example:


Output:

30

Explanation: Here, ‘+‘ is an addition operator that adds 10 and 20 operands and returns the value 30 as a result.

Kotlin Operator Types

Kotlin operators are classified into 6 types based on the type of operation they perform:


Arithmetic Operators:

Arithmetic operators are used to perform arithmetic or mathematical operations on the operands. For example, ‘+‘ is used for addition.

OperatorsMeaningExpressionTranslate to
+Additiona + ba.plus(b)
-Subtractiona - ba.minus(b)
*Multiplicationa * ba.times(b)
/Divisiona / ba.div(b)
%Modulusa % ba.rem(b)

Example:


Output:

a + b = 24
a - b = 16
a * b = 80
a / b = 5
a % b = 0


Relational Operators:

Relational operators are used to compare the values of two operands. For example, ‘>’ checks whether the right operand is greater.

OperatorsMeaningExpressionTranslate to
>greater thana > ba.compareTo(b) > 0
<less thana < ba.compareTo(b) < 0
>=greater than or equal toa >= ba.compareTo(b) >= 0
<=less than or equal toa <= ba.compareTo(b) <= 0
==is equal toa == ba?.equals(b) ?: (b === null)
!=not equal toa != b!(a?.equals(b) ?: (b === null)) > 0

Example:


Output:

c > d = false
c < d = true
c >= d = false
c <= d = true
c == d = false
c != d = true


Assignment Operators:

Assignment operators are used to assign a value to a variable. We assign the value of the right operand to left operand according to which assignment operator we use.  

OperatorsExpressionTranslate to

=

a = 5

a.equalto(5)

+=a = a + ba.plusAssign(b) > 0
-=a = a - ba.minusAssign(b) < 0
*=a = a * ba.timesAssign(b)>= 0
/=a = a / ba.divAssign(b) <= 0
%=a = a % ba.remAssign(b)

Example:


Output:

​15
10
50
10
0


Unary Operators:

Unary Operators are used to increment or decrement a value.

OperatorsExpressionTranslate to
++++a or a++a.inc()
----a or a--a.dec()


Example:


Output:

First print then increment: 10
First increment then print: 12
First print then decrement: 12
First decrement then print: 10


Logical Operators:

Logical operators are used to combine two or more conditions or constraints, or to complement the evaluation of the original condition in consideration. The result returns a Boolean value, i.e., true or false.

OperatorsMeaningExpression
&&Return true if all expressions are true(a>b) && (a>c)
||Return true if any of the expressions is true(a>b) || (a>c)
!Return the complement of the expressiona.not()


Example:


Output: 

100
25
Logical operators


Bitwise Operators:

Bitwise operators work on bit-level. So, compiler first converted to bit-level and then the calculation is performed on the operands.

OperatorsMeaningExpression
shlsigned shift lefta.shl(b)
shrsigned shift righta.shr(b)
ushrunsigned shift righta.ushr()
andbitwise anda.and(b)
orbitwise ora.or()
xorbitwise xora.xor()
invbitwise inversea.inv()


Example:


Output:

5 signed shift left by 1 bit: 10
10 signed shift right by 2 bits: : 2
12 unsigned shift right by 2 bits: 3
36 bitwise and 22: 4
36 bitwise or 22: 54
36 bitwise xor 22: 50
14 bitwise inverse is: -15
Comment
Article Tags:
Article Tags:

Explore