when Can an object reference be cast to an interface reference?



when Can an object reference be cast to an interface reference?..

Answer / praveen kumar

.An interface reference can point to any object of a class that implements this interface i.e. see the example below:

interface Foo{
void display();
}

public class TestFoo implements Foo{

void display(){
System.out.println(“Hello World”);
}

public static void main(String[] args){
Foo foo = new TestFoo();
foo.display();
}

}

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Java Related AllOther Interview Questions

Which type of stream is in java?

0 Answers  


How do you find lambda?

0 Answers  


What is dto in java?

0 Answers  


How can I write a program that takes command line input?

0 Answers  


What do you understand by casting in java language? What are the types of casting?

0 Answers  


is hibernate a technology or framework?

4 Answers  


how we can export all the contacts and messages from nokia mobile to other mobile or pc? (pls answer quickly)

1 Answers  


Spring framework ---Can somebody explain me in easily understandable format about AOP, IOC and DI, so that i can explain in interview rather than just telling what is available in net. I am not able to understand that also. I am new to Spring

0 Answers  


What is the means of java?

0 Answers  


What is cookie in java?

0 Answers  


What is the content of the Java 2 security policy file?

1 Answers  


What is aop in java?

0 Answers  


Categories