Cast result of plus operation to byte : short « Data Type « Java






Cast result of plus operation to byte

   

public class Main {
  public static void main(String[] args) {
    short a, b, c;
    c = 2;
    byte s;
    s = (byte) c;
    System.out.println("s is " + s);
   
  }
}

   
    
    
  








Related examples in the same category

1.Java Short Example
2.Java short: short is 16 bit signed type ranges from –32,768 to 32,767.
3.Convert Java String to Short
4.Short class creates primitives that wrap themselves around data items of the short data type
5.Use toString method of Short class to convert Short into String.
6.Use Short constructor to convert short primitive type to Short object
7.short value
8.Convert Short to numeric primitive data types
9.Convert String to short primitive
10.Compare Two Java short Arrays
11.Java Sort short Array
12.Cast back to short
13.Shorts Vs IntsShorts Vs Ints
14.Gets the maximum of three short values.
15.Gets the minimum of three short values.
16.Convert int and short to bytes