can you create interface instance ?
Answers were Sorted based on User's Feedback
Answer / anil
Uday..........Plz change ur name to James Gosling
Jr......dat suits u
Is This Answer Correct ? | 0 Yes | 28 No |
Answer / udaykiran
Why Not?
Yes, Even we can create an instance of interface and
abstract class also.
just see this below simple example
Main.java
-----------
interface Test
{
public void wish();
}
class Main
{
public static void main(String[] args)
{
Test t=new Test()
{
public void wish()
{
System.out.println("output: hello how r u");
}
};
t.wish();
}
}
cmd> javac Main.java
cmd> java Main
output: hello how r u
in above case Test is an interface but i created the object
for that interface.
Is This Answer Correct ? | 54 Yes | 92 No |
What is a newline character in java?
What is a two-pass assembler?
Can we use both this () and super () in a constructor?
why is S capital in System.out.println ????
What is the main purpose of java?
What do you mean by scope of variable?
Can a class be private?
Explain java coding standards for interfaces?
How many ways can you break a singleton class in java?
Can you write a java class that could be used both as an applet as well as an application?
What do you understand by Header linked List?
How many techniques can be employed to create a string object?