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 aggregation in java?
What services that container provides?
Can we create an object if a class doesn't have any constructor ( not even the default provided by constructor ) ?
What is nullpointerexception?
List implementations of list interface?
Is java call by value?
Is null == null in java?
what is the difference between the methods sleep() and wait()? : Java thread
Is java good for beginners?
How to create a base64 decoder in java8?
What is parsing and its types?
What is the difference between break and continue statements?