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 |
Which type of stream is in java?
How do you find lambda?
What is dto in java?
How can I write a program that takes command line input?
What do you understand by casting in java language? What are the types of casting?
is hibernate a technology or framework?
how we can export all the contacts and messages from nokia mobile to other mobile or pc? (pls answer quickly)
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
What is the means of java?
What is cookie in java?
What is the content of the Java 2 security policy file?
What is aop in java?