Does it change one object to another? if Imonitor is an interface what does Imonitor[] x = new Imonitor(); means? Does that mean we can create objects of interfaces?
|
|
Well, casting does different things depending on what types you're talking about. Consider:
That isn't changing the type of the object - but it's converting a reference of type For primitive types, it actually does create a new data value of a different type, changing the information copied rather than just changing a reference to the information:
Regarding interfaces:
This won't compile directly. But this will:
This isn't creating any instances of
... creating instances of concrete implementation classes. |
|||
|
|
|
if
|
|||
|
|
|
new Imonitor() will not work if Imonitor is an interface - you will get a compilation error. To cast an object is to change the type that the compiler think the object has (the static type) and does checks against. When the program is being run, then the JavaVm checks that the cast is valid, if not an exception is thrown. Interfaces can never be objects, you must have a class that implements the interface for that. |
|||
|
|
|
As others have said (and I did in my comment) you cannot directly instantiate an interface. I suggest you read up on Java interfaces to become more familiar with them - they can be confusing at first but they're a critical part of the language. Here is the section on interfaces at the Java tutorials. |
|||
|
|
|
Typecasting is also known as type conversion, it is to change an object from one data type to another. In non-primitive objects, typecasting is done on objects which have certain features of hierarchies. Example: A
For your example, But this would compile:
Suppose that you have an interface:
Then this wouldn't be a type casting example, but an assignment:
(The above example demonstrate anonymous class). I hope this is clear. |
||||
|
|
(1) No. For reference types
informs the compiler that you "know" that the object which 'b' points to is also an object of type 'typename'. That is, it is an operator over references rather than object. (For primitive types, it is actually a conversion).
(2) It won't compile. Imonitor is a type name. Imonitor[] is an array of IMonitors.
(3) No. But you can create an array of references to Imonitor, which is what
would do. |
|||||
|