can you create interface instance ?
Answers were Sorted based on User's Feedback
Answer / nilesh
We can create instance of Inteface. Also Interface can
extends another more than one interface. So plz check out.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / rushi shah
The above code given by Udaykiran gives the following error even before it is compiled:
Can not instantiate the type 'Test' type.
Which means that we can not create any object of interface.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / sharath
we can create an object for interface but the there will be
of no use because interface methods are abstract in nature
i.e they doesn't have any implementation..
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / kishore emani
Hi Anil, In this case uday sounds good!
As per your consideration if it is an anonymous class then
just remove that interface from our application and try to
compile it won't compile that code.
Here Test is an interface, for which to create the object
we need to provide the complete implementation for that
interface the same thing which uday did.
and again u check it if(t instanceof Test)
it is returning true that means t is an instance for Test.
and here the object is creating in the heap.
at finally here an instance is created for an interface.
| Is This Answer Correct ? | 4 Yes | 7 No |
Answer / guest
Hi all,
I think Udaya is right and i have tested in the same and its
working. But if you think about the way JAVA has to make
instances(e.g. A a = new A()) will not work. It will give
you compilation error. So there is something we are not able
to see. Even I am trying to get what this example actually
working.
Feel free to update me if I am wrong...☺
| Is This Answer Correct ? | 1 Yes | 7 No |
Answer / akhilesh
hey uday u r master in java yaar, by people like u we can
change the java world keep it up dude. just keep on posting
these kind of impossible things ok. Thanks a lot for that :)
| Is This Answer Correct ? | 14 Yes | 23 No |
Answer / uday
Hi Deepesh, uday is back again
Hey just see the question . can you create interface
instance?
just say the answer Yes or No?
my answer is Yes
how is it possible? Already i gave the example.I know that
this is anonymous inner class concept. But i don't want to
exceed this concept for too complex. that's why i did it in
this manner.Any How i thanks to all of you for more inputs.
but u can create the instance for interface. how can we
check an instance is,using instance of operator only. here
it proved hence the affrimative ans is right. i am not
plmbbing your knowledge it's just a kind of inquiry. Thanks
FYI huh!!!!
| Is This Answer Correct ? | 1 Yes | 12 No |
how to print hello world every second till i have pressed enter key ???
What is a databasemetadata?
What is illegal identifier in java?
What is this keyword used for?
What are the four versions of java?
Is vector synchronized in java?
Name the method that is used to set a TextComponent to the read-only state?
wHAT IS DEFAULT SPECIFIER IN JAVA wHAT IS DEFAULT CONSTRUCTOR IN JAVA wHAT IS DEFAULT METHOD IN JAVA
How can u create the Object of class Without using "New" opertor?
Write a function to find out longest palindrome in a given string?
Why ArrayList class is not a synchronized class and why it is not a thread safe class? explain
What is the main functionality of the remote reference layer?