class Ideone{ public static void main (String[] args) throws java.lang.Exception { //This will give compilation error int x = 456; short y = x; //Higher bit to lower bit conversion //Explicit casting //Lossy conversion int x = 456; short y = (short) x; }}