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);
}
}
{
public static void main(String args[])
{
short s1 = 5;
byte b1 = (byte) s1;
System.out.println(b1);
}
}
To convert short into byte using casting
Posted on by Unknown with No comments
public class Zs
{
public static void main(String args[])
{
short s1 = 5;
byte b1 = (byte) s1;
System.out.println(b1);
}
}
{
public static void main(String args[])
{
short s1 = 5;
byte b1 = (byte) s1;
System.out.println(b1);
}
}
Subscribe to:
Posts (Atom)
