Showing posts with label Casting. Show all posts
Showing posts with label Casting. Show all posts

Thursday, 7 May 2015

Thursday, 6 June 2013

public class Zs
{
     public static void main(String args[])
     {
          short s1 = 5;
         byte b1 = (byte) s1;
          System.out.println(b1);    
}
}

To convert short into byte using casting

public class Zs
{
     public static void main(String args[])
     {
          short s1 = 5;
         byte b1 = (byte) s1;
          System.out.println(b1);    
}
}
This entry was posted in :