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 wrapper class and its uses?
What is command line used for?
Can we extend singleton class?
Name the types of mouse event listeners ?
How do you add an element to a hashset in java?
Difference between a Canvas and a Scroll Pane?.
When arithmeticexception is thrown?
What is the size of an array?
How to create com object in Java?
What is append function?
Need to use public,static keywords in main function?
Is node a data type in java?