Difference between revisions of "JAVA: Operator Assignment dengan Contoh"

From OnnoWiki
Jump to navigation Jump to search
Line 1: Line 1:
 
Operators constitute the basic building block to any programming language. Java too provides many types of operators which can be used according to the need to perform various calculations and functions, be it logical, arithmetic, relational, etc. They are classified based on the functionality they provide.
 
Operators constitute the basic building block to any programming language. Java too provides many types of operators which can be used according to the need to perform various calculations and functions, be it logical, arithmetic, relational, etc. They are classified based on the functionality they provide.
  
Types of Operators:
+
Operator merupakan blok bangunan dasar untuk bahasa pemrograman apa pun. Java juga menyediakan banyak jenis operator yang dapat digunakan sesuai dengan kebutuhan untuk melakukan berbagai perhitungan dan fungsi, baik itu logika, aritmatika, relasional, dll. Diklasifikasikan berdasarkan fungsionalitas yang disediakan.
  
* Arithmetic Operators
+
 
* Unary Operators
+
Tipe Operator:
* Assignment Operator
+
 
* Relational Operators
+
* Operator Arithmetic
* Logical Operators
+
* Operator Unary
* Ternary Operator
+
* Operator Assignment
* Bitwise Operators
+
* Operator Relational
* Shift Operators
+
* Operator Logical
 +
* Operator Ternary
 +
* Operator Bitwise
 +
* Operator Shift
  
 
This article explains all that one needs to know regarding the Assignment Operators.  
 
This article explains all that one needs to know regarding the Assignment Operators.  
 +
 +
Artikel ini menjelaskan semua yang perlu diketahui tentang Operator Penugasan.
 +
  
 
==Assignment Operators==
 
==Assignment Operators==
  
 
These operators are used to assign values to a variable. The left side operand of the assignment operator is a variable, and the right side operand of the assignment operator is a value. The value on the right side must be of the same data type of the operand on the left side. Otherwise, the compiler will raise an error. This means that the assignment operators have right to left associativity, i.e., the value given on the right-hand side of the operator is assigned to the variable on the left. Therefore, the right-hand side value must be declared before using it or should be a constant. The general format of the assignment operator is,  
 
These operators are used to assign values to a variable. The left side operand of the assignment operator is a variable, and the right side operand of the assignment operator is a value. The value on the right side must be of the same data type of the operand on the left side. Otherwise, the compiler will raise an error. This means that the assignment operators have right to left associativity, i.e., the value given on the right-hand side of the operator is assigned to the variable on the left. Therefore, the right-hand side value must be declared before using it or should be a constant. The general format of the assignment operator is,  
 +
 +
Operator ini digunakan untuk memberikan nilai ke variabel. Operan sisi kiri dari operator penugasan adalah variabel, dan operan sisi kanan dari operator penugasan adalah nilai. Nilai di sisi kanan harus dari tipe data yang sama dengan operan di sisi kiri. Jika tidak, kompiler akan memunculkan kesalahan. Ini berarti bahwa operator penugasan memiliki asosiatifitas kanan ke kiri, yaitu, nilai yang diberikan di sisi kanan operator ditugaskan ke variabel di sebelah kiri. Oleh karena itu, nilai ruas kanan harus dideklarasikan sebelum digunakan atau harus berupa konstanta. Format umum dari operator penugasan adalah,
 +
  
 
  variable operator value;
 
  variable operator value;
  
Types of Assignment Operators in Java
+
==Types of Assignment Operators in Java==
 +
 
 
The Assignment Operator is generally of two types. They are:
 
The Assignment Operator is generally of two types. They are:
 +
 +
Operator Penugasan umumnya terdiri dari dua jenis. Mereka:
 +
  
 
* Simple Assignment Operator: The Simple Assignment Operator is used with the “=” sign where the left side consists of the operand and the right side consists of a value. The value of the right side must be of the same data type that has been defined on the left side.
 
* Simple Assignment Operator: The Simple Assignment Operator is used with the “=” sign where the left side consists of the operand and the right side consists of a value. The value of the right side must be of the same data type that has been defined on the left side.
Line 32: Line 45:
 
This is the most straightforward assignment operator, which is used to assign the value on the right to the variable on the left. This is the basic definition of an assignment operator and how it functions.  
 
This is the most straightforward assignment operator, which is used to assign the value on the right to the variable on the left. This is the basic definition of an assignment operator and how it functions.  
  
Syntax:  
+
Sintaks:  
  
 
  num1 = num2;
 
  num1 = num2;
  
Example:  
+
Contoh:  
  
 
  a = 10;
 
  a = 10;
Line 70: Line 83:
 
This operator is a compound of ‘+’ and ‘=’ operators. It operates by adding the current value of the variable on the left to the value on the right and then assigning the result to the operand on the left.  
 
This operator is a compound of ‘+’ and ‘=’ operators. It operates by adding the current value of the variable on the left to the value on the right and then assigning the result to the operand on the left.  
  
Syntax:  
+
Sintaks:  
  
 
  num1 += num2;
 
  num1 += num2;
  
Example:  
+
Contoh:  
  
 
  a += 10
 
  a += 10
Line 113: Line 126:
 
This operator is a compound of ‘-‘ and ‘=’ operators. It operates by subtracting the variable’s value on the right from the current value of the variable on the left and then assigning the result to the operand on the left.  
 
This operator is a compound of ‘-‘ and ‘=’ operators. It operates by subtracting the variable’s value on the right from the current value of the variable on the left and then assigning the result to the operand on the left.  
  
Syntax:  
+
Sintaks:  
  
 
  num1 -= num2;
 
  num1 -= num2;
  
Example:  
+
Contoh:  
  
 
  a -= 10
 
  a -= 10
Line 156: Line 169:
 
This operator is a compound of ‘*’ and ‘=’ operators. It operates by multiplying the current value of the variable on the left to the value on the right and then assigning the result to the operand on the left.  
 
This operator is a compound of ‘*’ and ‘=’ operators. It operates by multiplying the current value of the variable on the left to the value on the right and then assigning the result to the operand on the left.  
  
Syntax:  
+
Sintaks:  
  
 
  num1 *= num2;
 
  num1 *= num2;
  
Example:  
+
Contoh:  
  
 
  a *= 10
 
  a *= 10
Line 199: Line 212:
 
This operator is a compound of ‘/’ and ‘=’ operators. It operates by dividing the current value of the variable on the left by the value on the right and then assigning the quotient to the operand on the left.  
 
This operator is a compound of ‘/’ and ‘=’ operators. It operates by dividing the current value of the variable on the left by the value on the right and then assigning the quotient to the operand on the left.  
  
Syntax:  
+
Sintaks:  
  
 
  num1 /= num2;
 
  num1 /= num2;
  
Example:  
+
Contoh:  
  
 
  a /= 10
 
  a /= 10
Line 242: Line 255:
 
This operator is a compound of ‘%’ and ‘=’ operators. It operates by dividing the current value of the variable on the left by the value on the right and then assigning the remainder to the operand on the left.  
 
This operator is a compound of ‘%’ and ‘=’ operators. It operates by dividing the current value of the variable on the left by the value on the right and then assigning the remainder to the operand on the left.  
  
Syntax:  
+
Sintaks:  
  
 
  num1 %= num2;
 
  num1 %= num2;
  
Example:  
+
Contoh:  
  
 
  a %= 3
 
  a %= 3

Revision as of 10:48, 6 May 2022

Operators constitute the basic building block to any programming language. Java too provides many types of operators which can be used according to the need to perform various calculations and functions, be it logical, arithmetic, relational, etc. They are classified based on the functionality they provide.

Operator merupakan blok bangunan dasar untuk bahasa pemrograman apa pun. Java juga menyediakan banyak jenis operator yang dapat digunakan sesuai dengan kebutuhan untuk melakukan berbagai perhitungan dan fungsi, baik itu logika, aritmatika, relasional, dll. Diklasifikasikan berdasarkan fungsionalitas yang disediakan.


Tipe Operator:

  • Operator Arithmetic
  • Operator Unary
  • Operator Assignment
  • Operator Relational
  • Operator Logical
  • Operator Ternary
  • Operator Bitwise
  • Operator Shift

This article explains all that one needs to know regarding the Assignment Operators.

Artikel ini menjelaskan semua yang perlu diketahui tentang Operator Penugasan.


Assignment Operators

These operators are used to assign values to a variable. The left side operand of the assignment operator is a variable, and the right side operand of the assignment operator is a value. The value on the right side must be of the same data type of the operand on the left side. Otherwise, the compiler will raise an error. This means that the assignment operators have right to left associativity, i.e., the value given on the right-hand side of the operator is assigned to the variable on the left. Therefore, the right-hand side value must be declared before using it or should be a constant. The general format of the assignment operator is,

Operator ini digunakan untuk memberikan nilai ke variabel. Operan sisi kiri dari operator penugasan adalah variabel, dan operan sisi kanan dari operator penugasan adalah nilai. Nilai di sisi kanan harus dari tipe data yang sama dengan operan di sisi kiri. Jika tidak, kompiler akan memunculkan kesalahan. Ini berarti bahwa operator penugasan memiliki asosiatifitas kanan ke kiri, yaitu, nilai yang diberikan di sisi kanan operator ditugaskan ke variabel di sebelah kiri. Oleh karena itu, nilai ruas kanan harus dideklarasikan sebelum digunakan atau harus berupa konstanta. Format umum dari operator penugasan adalah,


variable operator value;

Types of Assignment Operators in Java

The Assignment Operator is generally of two types. They are:

Operator Penugasan umumnya terdiri dari dua jenis. Mereka:


  • Simple Assignment Operator: The Simple Assignment Operator is used with the “=” sign where the left side consists of the operand and the right side consists of a value. The value of the right side must be of the same data type that has been defined on the left side.
  • Compound Assignment Operator: The Compound Operator is used where +,-,*, and / is used along with the = operator.

Let’s look at each of the assignment operators and how they operate:

1. (=) operator:

This is the most straightforward assignment operator, which is used to assign the value on the right to the variable on the left. This is the basic definition of an assignment operator and how it functions.

Sintaks:

num1 = num2;

Contoh:

a = 10;
ch = 'y';
// Java code to illustrate "=" operator
 
import java.io.*;
 
class Assignment {
    public static void main(String[] args)
    {
        // Declaring variables
        int num;
        String name;
 
        // Assigning values
        num = 10;
        name = "GeeksforGeeks";
 
        // Displaying the assigned values
        System.out.println("num is assigned: " + num);
        System.out.println("name is assigned: " + name);
    }
}

Output

num is assigned: 10
name is assigned: GeeksforGeeks

2. (+=) operator:

This operator is a compound of ‘+’ and ‘=’ operators. It operates by adding the current value of the variable on the left to the value on the right and then assigning the result to the operand on the left.

Sintaks:

num1 += num2;

Contoh:

a += 10

This means,

a = a + 10
// Java code to illustrate "+="
 
import java.io.*;
 
class Assignment {
    public static void main(String[] args)
    {
 
        // Declaring variables
        int num1 = 10, num2 = 20;
 
        System.out.println("num1 = " + num1);
        System.out.println("num2 = " + num2);
 
        // Adding & Assigning values
        num1 += num2;
 
        // Displaying the assigned values
        System.out.println("num1 = " + num1);
    }
}

Output

num1 = 10
num2 = 20
num1 = 30

3. (-=) operator:

This operator is a compound of ‘-‘ and ‘=’ operators. It operates by subtracting the variable’s value on the right from the current value of the variable on the left and then assigning the result to the operand on the left.

Sintaks:

num1 -= num2;

Contoh:

a -= 10

This means,

a = a - 10
// Java code to illustrate "-="
 
import java.io.*;
 
class Assignment {
    public static void main(String[] args)
    {
 
        // Declaring variables
        int num1 = 10, num2 = 20;
 
        System.out.println("num1 = " + num1);
        System.out.println("num2 = " + num2);
 
        // Subtracting & Assigning values
        num1 -= num2;
 
        // Displaying the assigned values
        System.out.println("num1 = " + num1);
    }
}

Output

num1 = 10
num2 = 20
num1 = -10

4. (*=) operator:

This operator is a compound of ‘*’ and ‘=’ operators. It operates by multiplying the current value of the variable on the left to the value on the right and then assigning the result to the operand on the left.

Sintaks:

num1 *= num2;

Contoh:

a *= 10

This means,

a = a * 10 
// Java code to illustrate "*="
 
import java.io.*;
 
class Assignment {
    public static void main(String[] args)
    {
 
        // Declaring variables
        int num1 = 10, num2 = 20;
 
        System.out.println("num1 = " + num1);
        System.out.println("num2 = " + num2);
 
        // Multiplying & Assigning values
        num1 *= num2;
 
        // Displaying the assigned values
        System.out.println("num1 = " + num1);
    }
}

Output

num1 = 10
num2 = 20
num1 = 200

5. (/=) operator:

This operator is a compound of ‘/’ and ‘=’ operators. It operates by dividing the current value of the variable on the left by the value on the right and then assigning the quotient to the operand on the left.

Sintaks:

num1 /= num2;

Contoh:

a /= 10

This means,

a = a / 10
// Java code to illustrate "/="
 
import java.io.*;
 
class Assignment {
    public static void main(String[] args)
    {
 
        // Declaring variables
        int num1 = 20, num2 = 10;
 
        System.out.println("num1 = " + num1);
        System.out.println("num2 = " + num2);
 
        // Dividing & Assigning values
        num1 /= num2;
 
        // Displaying the assigned values
        System.out.println("num1 = " + num1);
    }
}

Output

num1 = 20
num2 = 10
num1 = 2

6. (%=) operator:

This operator is a compound of ‘%’ and ‘=’ operators. It operates by dividing the current value of the variable on the left by the value on the right and then assigning the remainder to the operand on the left.

Sintaks:

num1 %= num2;

Contoh:

a %= 3

This means,

a = a % 3
// Java code to illustrate "%="

import java.io.*;
 
class Assignment {
    public static void main(String[] args)
    {
 
        // Declaring variables
        int num1 = 5, num2 = 3;
 
        System.out.println("num1 = " + num1);
        System.out.println("num2 = " + num2);
 
        // Moduling & Assigning values
        num1 %= num2;
 
        // Displaying the assigned values
        System.out.println("num1 = " + num1);
    }
}

Output

num1 = 5
num2 = 3
num1 = 2



Referensi