Operators in Java Cont. - IT magazine

IT magazine

Knowledge that matters

Operators in Java Cont.

Share This

Assignment Operators

Assigning a value to a variable seems straightforward enough; you simply assign the stuff on the right side of the '= 'to the variable on the left. Below statement 1 assigning value 10 to variable x and statement 2 is creating String object called name and assigning value "Amit" to it.

Statement 1:     x =10;

Statement 2:   String name = new String ("Amit");

Assignment can be of various types. Let’s discuss each in detail.


Primitive Assignment :

The equal (=) sign is used for assigning a value to a variable. We can assign a primitive variable using a literal or the result of an expression. 

int x = 7; // literal assignment

int y = x + 2; // assignment with an expression

int z = x * y; // assignment with an expression with literal 

Primitive Casting

Casting lets you convert primitive values from one type to another. We need to provide casting when we are trying to assign higher precision primitive to lower precision primitive for example If we try to assign int variable (which is in range of byte variable) to byte variable then compiler will throw exception called "possible loss of precision". Eclipse IDE will suggest the solution as well as shown below. To avoid such problem we should use type casting which will instruct compiler for type conversion.
byte v = (byte) a;
 

 
 
For cases where we try to assign smaller container variable to larger container variables we do not need of explicit casting. Compiler will take care of those type conversions. For example we can assign byte variable or short variable to int without any explicit casting.


Assigning Literal that is too large for a variable

When we try to assign variable value which is too large (or out of range ) for primitive variable then compiler will throw exception “possible loss of precision” if we try to provide explicit cast then compiler will accept it but narrowed down the value using two’s compliment method. Let’s take example of byte which has 8 bit storage space and range -128 to 127. In below program we are trying to assign 129 literal value to byte primitive type which is out of range for byte so compiler converted it to -127 using two’s compliment method. Refer link for two’s complement calculation https://en.wikipedia.org/wiki/Two%27s_complement

Example:
public class ExplicitCastingDemo
{
    public static void main(String[] args)
    {
        byte b = (byte)129;
        System.out.println("Value of b= " + b);
    }
}

Reference variable assignment

We can assign newly created object to object reference variable as below

String s = new String(“Amit”);

Employee e = New Employee();
First line will do following things,
  • Makes a reference variable named s of type String
  • Creates a new String object on the heap memory
  • Assigns the newly created String object to the reference variable s
You can also assign null to an object reference variable, which simply means the variable is not referring to any object. The below statement creates space for the Employee reference variable (the bit holder for a reference value), but doesn't create an actual Employee object.

Employee a = null;

Compound Assignment Operators

Some time we need to modify same variable value and reassigned it to same reference variable. Java allows you to combine assignment and addition operators using a shorthand operator. For example, the preceding statement can be written as:

i +=8; //This is same as i = i+8;
The += is called the addition assignment operator. Other shorthand operators are shown below table



Operator
Name
Example
Equivalent
+=
Addition assignment
i+=5;
i=i+5
-=
Subtraction assignment
j-=10;
j=j-10;
*=
Multiplication assignment
k*=2;
k=k*2;
/=
Division assignment
x/=10;
x=x/10;
%=
Remainder assignment
a%=4;
a=a%4;

Below is the sample program explaining assignment operators:

 public class AssignmentOperatorDemo
{
    public static void main(String[] args)
    {
        //Literal Primitive Assignment
        byte b = 25;
        System.out.println("Primitive byte Assignment- "+ b);
        //Assigning one primitive to another primitive 
        byte c =b;
        System.out.println("Primitive byte Assignment from another byte variable- "+ c);
        //Literal assignment based on arithmetic operation
        int a = 23+b;
        System.out.println("Primitive int Assignment from arithmetic operation- "+ a);
        //Implicit Casting of variable x and y
        short s = 45;
        int x = b;
        int y = s;
        System.out.println("Implicit Casting of byte to int- "+ x);
        System.out.println("Implicit Casting of short to int- "+ y);
        //Short-Hand Assignment Operators
        int i = 10;
        i+=10;
        System.out.println("Addition Oprator- "+ i);
        i-=10;
        System.out.println("Subtraction Oprator- "+ i);
        i*=10;
        System.out.println("Multiplication Operator- " + i);
        i/=10;
        System.out.println("Division Operator- " + i);
        i%=3;
        System.out.println("Reminder Operator- " + i);
    }
}  

Summary

  • Assigning a value to can be straight forward or casting.
  • If we assign value which is out of range of variable type then 2’s compliment is assigned.
  • Java supports shortcut/compound assignment operator.

No comments:

Post a Comment