Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Type casting into byte in Java

I am a beginner in Java. I came across a concept called Type Casting. I have the following snippet-

    class Demo
    {
        byte b;
        int a=257;
        double d= 323.142
        b=(byte)a;
          System.out.println(b);
        b=(byte)d;
          System.out.println(b);

    }

The output for the code is 1 67

Can anybody explain me the outputs.

Thanks in Advance!

like image 793
user3788040 Avatar asked Oct 20 '14 12:10

user3788040


People also ask

Can we type cast int to byte?

Yes you do. For bytes, you can only assign literals and constants between -128 and 127. Any other number, you need an explicit cast.

Can we cast int to byte in Java?

The byteValue() method of Integer class of java. lang package converts the given Integer into a byte after a narrowing primitive conversion and returns it (value of integer object as a byte).

How do you turn a String into a byte?

We can use String class getBytes() method to encode the string into a sequence of bytes using the platform's default charset. This method is overloaded and we can also pass Charset as argument.

Is there a byte type in Java?

The eight primitive data types supported by the Java programming language are: byte: The byte data type is an 8-bit signed two's complement integer. It has a minimum value of -128 and a maximum value of 127 (inclusive).


2 Answers

The byte type is encoded on 8 bits, so it takes its values between -128 and 127. In your case, casting by byte is the same as computing a modulo and rounding to an int. Try the following code, the output is the same:

int a = 257;
double d = 323.142;
System.out.println(a % 128);
System.out.println((int) d % 128);
like image 113
Dici Avatar answered Oct 14 '22 07:10

Dici


In both cases you are doing a narrowing conversion, which may result in loss of information.

  1. Conversion of int to byte

you convert an int whose value is 257 (00000000 00000000 00000001 00000001 in binary) to a byte. Therefore, only the lowest (right) byte of the int is kept. Therefore the result is 00000001 in binary, which is 1.

  1. Conversion of double to byte

This conversion is more complicated.

  • In the first step 323.142 is converted from double to int, so it becomes 323.
  • The second step is the same as the first conversion :

    323 is 00000000 00000000 00000001 01000011 in binary. Converting 323 to byte keeps the lowest (right) byte, which gives you 67.

Here's what the JLS says about this conversion :

A narrowing conversion of a floating-point number to an integral type T takes two steps:

  1. In the first step, the floating-point number is converted either to a long, if T is long, or to an int, if T is byte, short, char, or int, as follows:

    • If the floating-point number is NaN (§4.2.3), the result of the first step of the conversion is an int or long 0.

    • Otherwise, if the floating-point number is not an infinity, the floating-point value is rounded to an integer value V, rounding toward zero using IEEE 754 round-toward-zero mode (§4.2.3). Then there are two cases:

      a. If T is long, and this integer value can be represented as a long, then the result of the first step is the long value V.

      b. Otherwise, if this integer value can be represented as an int, then the result of the first step is the int value V.

    • Otherwise, one of the following two cases must be true:

      a. The value must be too small (a negative value of large magnitude or negative infinity), and the result of the first step is the smallest representable value of type int or long.

      b. The value must be too large (a positive value of large magnitude or positive infinity), and the result of the first step is the largest representable value of type int or long.

  2. In the second step:

    • If T is int or long, the result of the conversion is the result of the first step.

    • If T is byte, char, or short, the result of the conversion is the result of a narrowing conversion to type T (§5.1.3) of the result of the first step.

like image 34
Eran Avatar answered Oct 14 '22 07:10

Eran