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 |
For each of the following program segments,give a big zero analysis for the running time 1.For (i=0;i<m;i++) { // } 2.For (j=0;j<i;j++)
0 Answers St. Pauls University,
can a program use more than one command-line argument?
Why java?
What is type inference? Is type inference available in older versions like java 7 and before 7 or it is available only in java se 8?
What is entitymanager in jpa?
What is mq in java?
Is jar an executable?
Why do we need new date and time api in java se 8?
Which framework is best for rest api java?
Why do we need framework in java?
Why Java is a platform independent language?Explain byte code and JVM
What is the meaning of loosely coupled in java?