• Source
    1.  
    2. class Ideone
    3. {
    4. public static void main (String[] args) throws java.lang.Exception
    5. {
    6. //This will give compilation error
    7. int x = 456;
    8. short y = x;
    9.  
    10. //Higher bit to lower bit conversion
    11. //Explicit casting
    12. //Lossy conversion
    13. int x = 456;
    14. short y = (short) x;
    15. }
    16. }