can you create interface instance ?
Answer Posted / arun savoji
This expression instantiates a new object from an unnamed
(called anonymouns inner class)and previously undefined
class, which automatically implements the interface Test.
The class can explicitly implement one, and only one
interface, and cannot extend any class other than Object.
As it implement the Test interface so our anonymous inner
class has to implement the methods in this case we have to
implement wish() method.
In java we can not create instance of an interface, since
interface do not have contructor and as well as defalut
contructor.
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
How destructors are defined in java?
Explain about anonymous inner classes ?
What are the rules for naming an array?
Why convert an applet to an application?
What is flush () in java?
Can we extend private class in java?
What does indexof mean?
What is a class object?
Can a private method be declared as static?
What is the difference between the prefix and postfix forms of the ++ operator?
How do you do exponents in java?
Can you access non static variable in static context?
What is a boolean used for?
What do you know about the garbage collector in java?
What is the difference between sleep and wait in java?