How do you relate a Interface to a Class? Tell me in
Detail?
Answers were Sorted based on User's Feedback
Answer / s.thirunavukarasu
with the help of implementing interface,we can relate a
interface to a class.
for example
interface firstone
{
public void display();
}
class myprm implements firstone
{
public void disply()
{
system.out.println("welcome to java world");
}
}
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ranganathkini
A class relates to an interface, in that the class
implements all the methods of the interface.
The implementing class can eiether provide a concrete
implementation of the interface's methods or provide an
abstract implementation.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is vector?
What is incompatible types in java?
If an object is garbage collected, can it become reachable again?
What is a static class in java?
Can you explain the difference b/n abtract and interface with a good example,?In what cases we have use abtract and what case interface?
How infinite loop is declared?
What restrictions are placed on method overloading and method overriding?
Explain java coding standards for constants?
What is the purpose of finalization?
What will be the initial value of an object reference which is defined as an instance variable?
Is constructor inherited?
How can you reverse a string?