phpclass/객체정보2005. 10. 25. 22:57

What Is an Interface?

(출처)

   http://java.sun.com/docs/books/tutorial/java/concepts/interface.html

현재 이 웹사이트 주소에 접속할 수 없어서 해당자료를 임시로 이곳에 올립니다.

현재 이 웹사이트의 자료가 새롭게 업데이트되었습니다.

수정되기 전의 문서(2005년 10월 이전 자료)를 임시로 이곳에 올립니다.


 

 

The JavaTM Tutorial

 

 


Trail: Learning the Java Language
Lesson: Object-Oriented Programming Concepts

 

What Is an Interface?

In general, an interface is a device or a system that unrelated entities use to interact. According to this definition, a remote control is an interface between you and a television set, the English language is an interface between two people, and the protocol of behavior enforced in the military is the interface between people of different ranks.

 

Within the Java programming language, an interface is a type, just as a class is a type. Like a class, an interface defines methods. Unlike a class, an interface never implements methods; instead, classes that implement the interface implement the methods defined by the interface. A class can implement multiple interfaces.

 

The bicycle class and its class hierarchy define what a bicycle can and cannot do in terms of its "bicycleness." But bicycles interact with the world on other terms. For example, a bicycle in a store could be managed by an inventory program. An inventory program doesn’t care what class of items it manages, as long as each item provides certain information, such as price and tracking number. Instead of forcing class relationships on otherwise unrelated items, the inventory program sets up a protocol of communication. This protocol comes in the form of a set of method definitions contained within an interface. The inventory interface would define, but not implement, methods that set and get the retail price, assign a tracking number, and so on.

 

To work in the inventory program, the bicycle class must agree to this protocol by implementing the interface. When a class implements an interface, the class agrees to implement all the methods defined in the interface. Thus, the bicycle class would provide the implementations for the methods that set and get retail price, assign a tracking number, and so on.

 

You use an interface to define a protocol of behavior that can be implemented by any class anywhere in the class hierarchy. Interfaces are useful for the following:

 

  • Capturing similarities among unrelated classes without artificially forcing a class relationship
  • Declaring methods that one or more classes are expected to implement
  • Revealing an object's programming interface without revealing its class
  • Modelling multiple inheritance, a feature that some object-oriented languages support that allows a class to have more than one superclass

 

 

 

Copyright 1995-2005 Sun Microsystems, Inc. All rights reserved.


Posted by 방글24