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
Break statement can be used as labels in java?
What is the difference between the size and capacity of a vector?
What is a subsequence of a string?
How to find the given number is a prime number or not by getting input from the user
How to compare strings in java?
Can we overload the main() method?
What kind of variables can a class consist?
Explain try and catch keywords in java?
how to handle exceptions in ejb?
What are class types in java?
What is number data type?
Is logger a singleton?
Suppose if we have variable ' I ' in run method, if I can create one or more thread each thread will occupy a separate copy or same variable will be shared?
Can a constructor have different name than a class name in java?
Explain the public class modifier?