User Tools

Site Tools


glossary:interface

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
glossary:interface [2013-06-14 15:39] – better structure and enhanced description christianglossary:interface [2021-10-20 20:14] (current) – +++ restored +++ christian
Line 55: Line 55:
  
 ==== Examples ==== ==== Examples ====
 +[[http://docs.oracle.com/javase/7/docs/api/|java.util.Collection<E>]]: 
 +<code java> 
 +public interface Collection<E> extends Iterable<E>  
 +
 +    boolean add(E e); 
 +    boolean addAll(Collection<? extends E> c) 
 +    void clear() 
 +    boolean contains(Object o) 
 +    ... 
 +
 +</code>
 ==== Alternative Definitions ==== ==== Alternative Definitions ====
 /*i.e. slightly different definitions for basically the same thing*/ /*i.e. slightly different definitions for basically the same thing*/
Line 72: Line 82:
  
   * In [[Object Pascal]] a [[unit]], i.e. a pas-file, typically contains an interface and an implementation section. The interface section lists the declarations which are visible outside the unit.   * In [[Object Pascal]] a [[unit]], i.e. a pas-file, typically contains an interface and an implementation section. The interface section lists the declarations which are visible outside the unit.
 +
 +----
 +===== Discussion =====
 +
 +Discuss this wiki article and the term on the corresponding [[talk:glossary:Interface|talk page]].
 +
glossary/interface.1371217143.txt.gz · Last modified: 2013-06-14 15:39 by christian