16 lines
246 B
Text
16 lines
246 B
Text
|
/* testing casting as well as creating new Objects*/
|
||
|
class Main
|
||
|
{
|
||
|
void main()
|
||
|
{
|
||
|
int a;
|
||
|
int b;
|
||
|
Object c;
|
||
|
Object d;
|
||
|
|
||
|
c = null;
|
||
|
d = new Object();
|
||
|
a = 10;
|
||
|
c = (Object) d;
|
||
|
}
|
||
|
}
|