Home > Java > Javagetting Started > body text

How to call java interface

爱喝马黛茶的安东尼
Release: 2019-11-12 11:23:41
Original
5568 people have browsed it

How to call java interface

A class that implements a certain interface can call methods in the interface. An interface can be understood as an ability. For example, every animal has the ability to bark, but each animal has a different cry. The ability to bark can be defined as an interface.

How to call java interface

1. Create projects and packages

Open Eclipse and select File→New→Project. In the Select a wizard window that pops up, select Java Project and click Next.

How to call java interface

Enter the project name and click Next (it is recommended to follow the naming rules)

How to call java interface

Right-click the new project, Select New→Package in order. After naming the package, click Next.

How to call java interface

2. Create an interface

Right-click the package and select New→Interface.

How to call java interface

After naming the interface ShoutAbility, click Finish. (Shouting capability interface)

How to call java interface

As shown below, define the interface shout() method (keep good habits and add comments), and press Ctrl S to save.

How to call java interface

3. Create an interface implementation class

Right-click the package, select New→Class, and name the class AoShout ( Howling).

How to call java interface

As shown below, AoShout implements the ShoutAbility interface. The keyword to implement the interface is implements, and overrides the shout method of the interface. Press Ctrl S to save.

How to call java interface

4. Call the interface method

Create a Bird class and define a constructor with parameters, using the interface type to define parameters .

When defining Bird's shout() method, you can use interface variables to call the interface method.

Press Ctrl S to save.

How to call java interface

Create a test class, create an interface object using the interface implementation class AoShout, and then use the created bridShout object to create a bird object.

When calling the bird method, the method called to the interface will be executed, and the method of the implementation class will be found through the interface.

How to call java interface

Notes

The methods of the interface are all abstract methods, and the methods must be implemented in the implementation class; a class can have multiple An interface (capability); the first letter of the class name must be capitalized.

php Chinese website, a large number of free Java introductory tutorials, welcome to learn online!

The above is the detailed content of How to call java interface. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!