answersLogoWhite

0


Best Answer

Implementation in java mean to accomplish some aim or to execute some order in java software platform. Your class can implement more than one interface, so the implements keyword is followed by a comma with separated list of the interfaces implemented by the class. By convention, the implements clause follows the extends clause, if there is one.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

Implementing is a term that is used in Java in conjunction with Interfaces. We use the term Implementing an Interface.

When you implement an interface, you're agreeing to adhere to the contract defined in the interface. That means you're agreeing to provide legal implementations for every method defined in the interface, and that anyone who knows what the interface methods look like can rest assured that they can invoke those methods on an instance of your implementing class. (Thy need not bother much about how you have implemented it. All they bother about is whether a method of the name mentioned in the interface is available or not)

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does implementation mean in java?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which is better java or Ajax?

you mean JavaApplet or Ajax? I do not think you can compare java as a whole and AJAX. Ajax is a simple implementation of JAvascript .


What is the recent public implementation of Java?

Apache Harmony is the recent open source implementation of the Java runtime with class libraries and associated tools.


What is THE definition of advance java?

Advance java is the implementation of servlet in web pages.


Why java is being used?

Collective insanity. Java is a horrible implementation of a not-entirely-awful idea.


What are user defined keywords in java?

As far as I know, keywords are part of the implementation of Java, and cannot be defined or redefined.


What is the providence of US?

The JRE refers to Java Runtime Environment... JRE is an implementation of the Java Virtual Machine which actually executes Java programs. Without the JRE we cannot execute our Java programs.


What is interface in java?

Interface is collection of abstract methods which has only declaration and no implementation


What is the use of providing jre?

The JRE refers to Java Runtime Environment... JRE is an implementation of the Java Virtual Machine which actually executes Java programs. Without the JRE we cannot execute our Java programs.


Should IDE be a part of JRE?

An IDE cannot be part of a JRE. The "JRE" is the Java Runtime Environment. I.e., the JRE is an implementation of the Java Virtual Machine which actually executes Java programs. An IDE refers to - Integrated Development Environment, using which we can develop Java programs and applications. an IDE comes with an implementation of a JRE. so it cannot be part of a JRE


A java code for Elliptic Curve Cryptography?

While I have never taken on such a complex project myself, you can find a Java implementation of ECC on http://www.bouncycastle.org/java.html


Who is the latest owner of Java?

Sun Microsystems created Java. Oracle bought Sun, and thus they became the owners of Java.Fortunately, Java was open sourced and the source to the Java SE and Java EE projects is free to use under a GPL license. OpenJDK is an open-source implementation of the Java Platform.


What is abstraction method in java?

Abstraction in Java or Object oriented programming is a way to segregate implementation from interface and one of the five fundamentals along with Encapsulation, Inheritance, Polymorphism, Class and Object. Abstraction in Java is achieved by using interface and abstract class in Java.