Java Programming
Get the collection of Java Programs.J2SE
Tuesday, 10 June 2014
Typecasting Example
class
Typecast
{
static int a = 10;
static long b = 20;
public static void main(String []args)
{
a = (int)b;
////explicit
b = a;
//implicit
}
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment