Friday, September 10, 2021

Java Automatic Numeric Type Promotion

In Java, numeric promotion happens automatically in case of primitive types when those primitives are used in an expression.

As example

byte a = 100;
byte b = 50;
int i = a * b;

In the above code a * b will exceed the range of its byte operand (range of byte is -128 to 127). In these type of situations Java will automatically promote the byte, short or char to int when evaluating an expression. Also, note that the result is assigned to an int variable i without any explicit casting as the result was already an int.

Rules for Type promotion in Java

There are several type promotion rules in Java that are followed while evaluating expressions-

  • All byte, short and char values are promoted to int.
  • If any operand is long then the expression result is long. i.e. whole expression is promoted to long.
  • If any operand is a float then the expression result is float. i.e. whole expression is automatically promoted to float.
  • If any operand is a double then the expression result is double. i.e. whole expression is promoted to double in Java.

Let's see some Java examples depicting the numeric promotion rules in Java-

1- When one of the operand is double.
public class PromotionExample {
 public static void main(String[] args) {
  int i = 30;
  double d = 2.5;
  double result = i * d;
  System.out.println("Result is- " + result);
 }
}

Output

Result is- 75.0

In the code one of the operand is int and another operand is double so the expression result has to be double because of the numeric promotion.

2- When one of the operand is float.
public class PromotionExample {
 public static void main(String[] args) {
  short s = 4;
  int i = 30;
  float f = 6.75f;
  float result = (s+i) * f;
  System.out.println("Result is- " + result);
 }
}

Output

Result is- 229.5

In the code one of the operand is float so the whole expression is promoted to float.

3- Trying to assign the result to int when one of the operand is float.
automatic numeric type promotion in Java

As shown in the code, since one of the value is float so the result should also be float and that's what the compiler is complaining about here.

Problems because of automatic type promotion

Sometimes automatic numeric promotion in Java may cause confusing compilation problems. Let's see it with an example-

automatic numeric type promotion

Here byte b has the value 2. Again I am trying to assign (b * 2) to b which is with in the range of byte (-128 to 127) but compiler complains "Can't convert from int to byte". This error is there because the byte is automatically converted to int at the time of evaluating the expression. If it has to be assigned to a byte then explicit type casting is required.

b=(byte)b*2;

That's all for this topic Java Automatic Numeric Type Promotion. If you have any doubt or any suggestions to make please drop a comment. Thanks!

>>>Return to Java Basics Tutorial Page


Related Topics

  1. Access Modifiers in Java - Public, Private, Protected and Default
  2. Interface in Java With Examples
  3. Constructor in Java
  4. static Keyword in Java With Examples
  5. Core Java Basics Interview Questions And Answers

You may also like-

  1. Inheritance in Java
  2. Marker Interface in Java
  3. static Import in Java With Examples
  4. Covariant Return Type in Java
  5. Varargs (Variable-length Arguments) in Java
  6. Java Exception Handling Tutorial
  7. Lambda Expressions in Java 8
  8. How HashMap Works Internally in Java