Eiffel (programming language)

Eiffelis anobject-orientedprogramming languagedesigned byBertrand Meyer(an object-orientation proponent and author ofObject-Oriented Software Construction) and Eiffel Software. Meyer conceived the language in 1985 with the goal of increasing the reliability of commercial software development;[4]the first version becoming available in 1986. In 2005, Eiffel became anISO-standardized language.

Eiffel
Eiffel logo
ParadigmObject-oriented,Class-based,Generic,Concurrent
Designed byBertrand Meyer
DeveloperEiffel Software
First appeared1986[1]
Stable release
EiffelStudio 24.05[2] / 14 June 2024;5 months ago(2024-06-14)
Typing disciplinestatic
Implementation languageEiffel
PlatformCross-platform
OSFreeBSD,Linux,macOS,OpenBSD,Solaris,Windows
Licensedual and enterprise
Filename extensions.e
Websiteeiffel.org
Majorimplementations
EiffelStudio,LibertyEiffel,SmartEiffel,Visual Eiffel,Gobo Eiffel, "The Eiffel Compiler" tecomp
Influenced by
Ada,Simula,Z
Influenced
Ada 2012,Albatross,C#,D,Java,Racket,Ruby,[3]Sather,Scala

The design of the language is closely connected with the Eiffel programming method. Both are based on a set of principles, includingdesign by contract,command–query separation,theuniform-access principle,thesingle-choice principle,theopen–closed principle,andoption–operand separation.

Many concepts initially introduced by Eiffel later found their way intoJava,C#,and other languages.[5]New language design ideas, particularly through theEcma/ISOstandardization process, continue to be incorporated into the Eiffel language.

Characteristics

edit

The key characteristics of the Eiffel language include:

  • An object-oriented program structure in which a class serves as the basic unit of decomposition.[6]
  • Design by contracttightly integrated with other language constructs.
  • Automatic memory management, typically implemented bygarbage collection.[7]
  • Inheritance,includingmultiple inheritance,renaming,redefinition,"select",non-conforming inheritance,and other mechanisms intended to make inheritance safe.
  • Constrained and unconstrainedgeneric programming[8]
  • A uniformtype systemhandling both value and reference semantics in which all types, including basic types such as INTEGER, are class-based.
  • Static typing
  • Void safety,or static protection against calls on null references, through the attached-types mechanism.
  • Agents, or objects that wrap computations, closely connected withclosuresandlambda calculus.
  • Onceroutines, or routines evaluated only once, for object sharing and decentralized initialization.
  • Keyword-based syntax in theALGOL/Pascaltradition but separator-free, insofar as semicolons are optional, with operator syntax available for routines.
  • Case insensitivity
  • Simple Concurrent Object-Oriented Programming (SCOOP) facilitates creation of multiple, concurrently active execution vehicles at a level of abstraction above the specific details of these vehicles (e.g. multiple threads without specific mutex management).

Design goals

edit

Eiffel emphasizes declarative statements over procedural code and attempts to eliminate the need for bookkeeping instructions.

Eiffel shuns coding tricks or coding techniques intended asoptimizationhints to the compiler. The aim is not only to make the code more readable, but also to allow programmers to concentrate on the important aspects of a program without getting bogged down in implementation details. Eiffel's simplicity is intended to promote simple, extensible, reusable, and reliable answers to computing problems. Compilers for computer programs written in Eiffel provide extensive optimization techniques, such as automatic in-lining, that relieve the programmer of part of the optimization burden.

Background

edit

Eiffel was originally developed by Eiffel Software, a company founded byBertrand Meyer.Object-Oriented Software Constructioncontains a detailed treatment of the concepts and theory of the object technology that led to Eiffel's design.[9]

The design goal behind the Eiffel language, libraries, and programming methods is to enable programmers to create reliable, reusable software modules. Eiffel supportsmultiple inheritance,genericity,polymorphism,encapsulation,type-safe conversions, andparameter covariance.Eiffel's most important contribution tosoftware engineeringisdesign by contract(DbC), in whichassertions,preconditions,postconditions,andclass invariantsare employed to help ensure program correctness without sacrificing efficiency.

Eiffel's design is based on object-oriented programming theory, with only minor influence of other paradigms or concern for support of legacy code. Eiffel formally supportsabstract data types.Under Eiffel's design, a software text should be able to reproduce its design documentation from the text itself, using a formalized implementation of the "Abstract Data Type".

Implementations and environments

edit

EiffelStudiois anintegrated development environmentavailable under either anopen sourceor a commercial license. It offers an object-oriented environment forsoftware engineering.EiffelEnvision is a plug-in forMicrosoft Visual Studiothat allows users to edit, compile, and debug Eiffel projects from within the Microsoft Visual Studio IDE. Five otheropen sourceimplementations are available: "The Eiffel Compiler" tecomp; Gobo Eiffel;SmartEiffel,the GNU implementation, based on an older version of the language;LibertyEiffel,based on the SmartEiffel compiler; andVisual Eiffel.

Several other programming languages incorporate elements first introduced in Eiffel.Sather,for example, was originally based on Eiffel but has since diverged, and now includes severalfunctional programmingfeatures. The interactive-teaching language Blue, forerunner ofBlueJ,is also Eiffel-based. TheApple Media Toolincludes an Eiffel-based Apple Media Language.

Specifications and standards

edit

The Eiffel language definition is an international standard of theISO.The standard was developed byECMA International,which first approved the standard on 21 June 2005 as Standard ECMA-367, Eiffel: Analysis, Design and Programming Language. In June 2006, ECMA and ISO adopted the second version. In November 2006, ISO first published that version. The standard can be found and used free of charge on the ECMA site.[10]The ISO version[11]is identical in all respects except formatting.

Eiffel Software, "The Eiffel Compiler" tecomp and Eiffel-library-developer Gobo have committed to implementing the standard; Eiffel Software's EiffelStudio 6.1 and "The Eiffel Compiler" tecomp implement some of the major new mechanisms—in particular, inline agents, assigner commands, bracket notation, non-conforming inheritance, and attached types. TheSmartEiffelteam has turned away from this standard to create its own version of the language, which they believe to be closer to the original style of Eiffel. Object Tools has not disclosed whether future versions of its Eiffel compiler will comply with the standard.LibertyEiffelimplements a dialect somewhere in between theSmartEiffellanguage and the standard.

The standard cites the following, predecessor Eiffel-language specifications:

  • Bertrand Meyer:Eiffel: The Language,Prentice Hall, second printing, 1992 (first printing: 1991)
  • Bertrand Meyer:Standard Eiffel(revision of preceding entry), ongoing, 1997–present, at Bertrand Meyer's ETL3 page, and
  • Bertrand Meyer:Object-Oriented Software Construction,Prentice Hall: first edition, 1988; second edition, 1997.
  • Bertrand Meyer:Touch of Class: Learning to Program Well with Objects and Contracts,Springer-Verlag, 2009ISBN978-3-540-92144-8lxiv + 876 pages Full-color printing, numerous color photographs

The current version of the standard from June 2006 contains some inconsistencies (e.g. covariant redefinitions)[citation needed].The ECMA committee has not yet announced any timeline and direction on how to resolve the inconsistencies.

Syntax and semantics

edit

Overall structure

edit

An Eiffel "system" or "program" is a collection ofclasses.Above the level of classes, Eiffel definescluster,which is essentially a group of classes, and possibly ofsubclusters(nested clusters). Clusters are not a syntacticlanguage construct,but rather a standard organizational convention. Typically an Eiffel program will be organized with each class in a separate file, and each cluster in a directory containing class files. In this organization, subclusters are subdirectories. For example, under standard organizational and casing conventions,x.emight be the name of a file that defines a class called X.

A class containsfeatures,which are similar to "routines", "members", "attributes" or "methods" in other object-oriented programming languages. A class also defines its invariants, and contains other properties, such as a "notes" section for documentation and metadata. Eiffel's standard data types, such asINTEGER,STRINGandARRAY,are all themselves classes.

Every system must have a class designated as "root", with one of its creation procedures designated as "root procedure". Executing a system consists of creating an instance of the root class and executing its root procedure. Generally, doing so creates new objects, calls new features, and so on.

Eiffel has five basic executable instructions: assignment, object creation, routine call, condition, and iteration. Eiffel's control structures are strict in enforcingstructured programming:every block has exactly one entry and exactly one exit.

Scoping

edit

Unlike many object-oriented languages, but likeSmalltalk,Eiffel does not permit any assignment into attributes of objects, except within the features of an object, which is the practical application of the principle ofinformation hidingor data abstraction, requiring formal interfaces for data mutation. To put it in the language of other object-oriented programming languages, all Eiffel attributes are "protected", and "setters" are needed for client objects to modify values. An upshot of this is that "setters" can and normally do, implement the invariants for which Eiffel provides syntax.

While Eiffel does not allow direct access to the features of a class by a client of the class, it does allow for the definition of an "assigner command", such as:


some_attribute:SOME_TYPEassignset_some_attribute

set_some_attribute(v:VALUE_TYPE)
-- Set value of some_attribute to `v'.
do
some_attribute:=v
end

While a slight bow to the overall developer community to allow something looking like direct access (e.g. thereby breaking the Information Hiding Principle), the practice is dangerous as it hides or obfuscates the reality of a "setter" being used. In practice, it is better to redirect the call to a setter rather than implying a direct access to a feature likesome_attributeas in the example code above.[citation needed]

Unlike other languages, having notions of "public", "protected", "private" and so on, Eiffel uses an exporting technology to more precisely control the scoping between client and supplier classes. Feature visibility is checked statically at compile-time. For example, (below), the "{NONE}" is similar to "protected" in other languages. Scope applied this way to a "feature set" (e.g. everything below the 'feature' keyword to either the next feature set keyword or the end of the class) can be changed in descendant classes using the "export" keyword.

feature{NONE}-- Initialization
default_create
-- Initialize a new `zero' decimal instance.
do
make_zero
end

Alternatively, the lack of a {x} export declaration implies {ANY} and is similar to the "public" scoping of other languages.

feature-- Constants

Finally, scoping can be selectively and precisely controlled to any class in the Eiffel project universe, such as:

feature{DECIMAL,DCM_MA_DECIMAL_PARSER,DCM_MA_DECIMAL_HANDLER}-- Access

Here, the compiler will allow only the classes listed between the curly braces to access the features within the feature group (e.g.DECIMAL, DCM_MA_DECIMAL_PARSER, DCM_MA_DECIMAL_HANDLER).

"Hello, world!"

edit

A programming language's look and feel is often conveyed using a"Hello, world!"program. Such a program written in Eiffel might be:

class
HELLO_WORLD
create
make
feature
make
do
print("Hello, world!%N")
end
end

This program contains the classHELLO_WORLD.The constructor (create routine) for the class, namedmake,invokes theprintsystem library routine to write a"Hello,world! "message to the output.

Design by contract

edit

The concept of Design by Contract is central to Eiffel. The contracts assert what must be true before a routine is executed (precondition) and what must hold to be true after the routine finishes (post-condition). Class Invariant contracts define what assertions must hold true both before and after any feature of a class is accessed (both routines and attributes). Moreover, contracts codify into executable code developer and designers assumptions about the operating environment of the features of a class or the class as a whole by means of the invariant.

The Eiffel compiler is designed to include the feature and class contracts in various levels. EiffelStudio, for example, executes all feature and class contracts during execution in the "Workbench mode." When an executable is created, the compiler is instructed by way of the project settings file (e.g. ECF file) to either include or exclude any set of contracts. Thus, an executable file can be compiled to either include or exclude any level of contract, thereby bringing along continuous levels of unit and integration testing. Moreover, contracts can be continually and methodically exercised by way of the Auto-Test feature found in EiffelStudio.

The Design by Contract mechanisms are tightly integrated with the language and guide redefinition of features in inheritance:

  • Routine precondition: The precondition may only be weakened by inheritance; any call that meets the requirements of the ancestor meets those of the descendant.
  • Routine postcondition: The postcondition can only be strengthened by inheritance; any result guaranteed by the ancestor is still provided by the descendant.
  • Class invariant: Conditions that must hold true after the object's creation and after any call to an exported class routine. Because the invariant is checked so often, it makes it simultaneously the most expensive and most powerful form of condition or contract.

In addition, the language supports a "check instruction" (a kind of "assert" ), loop invariants, and loop variants (which guarantee loop termination).

Void-safe capability

edit

Void-safe capability, like static typing, is another facility for improving software quality. Void-safe software is protected from run time errors caused by calls tovoid references,and therefore will be more reliable than software in which calls to void targets can occur. The analogy to static typing is a useful one. In fact, void-safe capability could be seen as an extension to the type system, or a step beyond static typing, because the mechanism for ensuring void safety is integrated into the type system.

The guard against void target calls can be seen by way of the notion of attachment and (by extension) detachment (e.g. detachable keyword). The void-safe facility can be seen in a short re-work of the example code used above:

some_attribute:detachableSOME_TYPE

use_some_attribute
-- Set value of some_attribute to `v'.
do
ifattachedsome_attributeasl_attributethen
do_something(l_attribute)
end
end

do_something(a_value:SOME_TYPE)
-- Do something with `a_value'.
do
...doingsomethingwith`a_value'...
end

The code example above shows how the compiler can statically address the reliability of whethersome_attributewill be attached or detached at the point it is used. Notably, theattachedkeyword allows for an "attachment local" (e.g.l_attribute), which is scoped to only the block of code enclosed by the if-statement construct. Thus, within this small block of code, the local variable (e.g.l_attribute) can be statically guaranteed to be non-void (i.e. void safe).

Features: commands and queries

edit

The primary characteristic of a class is that it defines a set of features: as a class represents a set of run-time objects, or "instances", a feature is an operation on these objects. There are two kinds of features: queries and commands. A query provides information about an instance. A command modifies an instance.

The command-query distinction is important to the Eiffel method. In particular:

  • Uniform-Access Principle:from the point of view of a software client making a call to a class feature, whether a query is an attribute (field value) or a function (computed value) should not make any difference. For example,a_vehicle.speedcould be an attribute accessed on the objecta_vehicle,or it could be computed by a function that divides distance by time. The notation is the same in both cases, so that it is easy to change the class's implementation without affecting client software.
  • Command-Query Separation Principle:Queries must not modify the instance. This is not a language rule but a methodological principle. So in good Eiffel style, one does not find "get" functions that change something and return a result; instead there are commands (procedures) to change objects, and queries to obtain information about the object, resulting from preceding changes.

Overloading

edit

Eiffel does not allow argumentoverloading.Each feature name within a class always maps to a specific feature within the class. One name, within one class, means one thing. This design choice helps the readability of classes, by avoiding a cause of ambiguity about which routine will be invoked by a call. It also simplifies the language mechanism; in particular, this is what makes Eiffel's multiple inheritance mechanism possible.[12]

Names can, of course, be reused in different classes. For example, the featureplus(along with its infixalias"+") is defined in several classes:INTEGER,REAL,STRING,etc.

Genericity

edit

A generic class is a class that varies by type (e.g. LIST [PHONE], a list of phone numbers; ACCOUNT [G->ACCOUNT_TYPE], allowing for ACCOUNT [SAVINGS] and ACCOUNT [CHECKING], etc.). Classes can be generic, to express that they are parameterized by types. Generic parameters appear in square brackets:

classLIST[G]...

G is known as a "formal generic parameter". (Eiffel reserves "argument" for routines, and uses "parameter" only for generic classes.) With such a declaration G represents within the class an arbitrary type; so a function can return a value of type G, and a routine can take an argument of that type:

item:Gdo...end
put(x:G)do...end

TheLIST [INTEGER]andLIST [WORD]are "generic derivations" of this class. Permitted combinations (withn: INTEGER,w: WORD,il: LIST [INTEGER],wl: LIST [WORD]) are:

n:=il.item
wl.put(w)

INTEGERandWORDare the "actual generic parameters" in these generic derivations.

It is also possible to have 'constrained' formal parameters, for which the actual parameter must inherit from a given class, the "constraint". For example, in

classHASH_TABLE[G,KEY->HASHABLE]

a derivationHASH_TABLE [INTEGER, STRING]is valid only ifSTRINGinherits fromHASHABLE(as it indeed does in typical Eiffel libraries). Within the class, havingKEYconstrained byHASHABLEmeans that forx: KEYit is possible to apply toxall the features ofHASHABLE,as inx.hash_code.

Inheritance basics

edit

To inherit from one or more others, a class will include aninheritclause at the beginning:

classCinherit
A
B

--... Rest of class declaration...

The class may redefine (override) some or all of the inherited features. This must be explicitly announced at the beginning of the class through aredefinesubclause of the inheritance clause, as in

classCinherit
A
redefinef,g,hend
B
redefineu,vend

See[13]for a complete discussion of Eiffel inheritance.

Deferred classes and features

edit

Classes may be defined withdeferred classrather than withclassto indicate that the class may not be directly instantiated. Non-instantiatable classes are calledabstract classesin some other object-oriented programming languages. In Eiffel parlance, only an "effective" class can be instantiated (it may be a descendant of a deferred class). A feature can also be deferred by using thedeferredkeyword in place of adoclause. If a class has any deferred features it must be declared as deferred; however, a class with no deferred features may nonetheless itself be deferred.

Deferred classes play some of the same role asinterfacesin languages such as Java, though many object-oriented programming theorists believe interfaces are themselves largely an answer to Java's lack of multiple inheritance (which Eiffel has).[14][15]

Renaming

edit

A class that inherits from one or more others gets all its features, by default under their original names. It may, however, change their names throughrenameclauses. This is required in the case of multiple inheritance if there are name clashes between inherited features; without renaming, the resulting class would violate the no-overloading principle noted above and hence would be invalid.

Tuples

edit

Tuples types may be viewed as a simple form of class, providing only attributes and the corresponding "setter" procedure. A typical tuple type reads

TUPLE[name:STRING;weight:REAL;date:DATE]

and could be used to describe a simple notion of birth record if a class is not needed. An instance of such a tuple is simply a sequence of values with the given types, given in brackets, such as

["Brigitte",3.5,Last_night]

Components of such a tuple can be accessed as if the tuple tags were attributes of a class, for example ifthas been assigned the above tuple thent.weighthas value 3.5.

Thanks to the notion of assigner command (see below), dot notation can also be used to assign components of such a tuple, as in

t.weight:=t.weight+0.5

The tuple tags are optional, so that it is also possible to write a tuple type asTUPLE [STRING, REAL, DATE].(In some compilers this is the only form of tuple, as tags were introduced with the ECMA standard.)

The precise specification of e.g.TUPLE [A, B, C]is that it describes sequences ofat leastthree elements, the first three being of typesA,B,Crespectively. As a result,TUPLE [A, B, C]conforms to (may be assigned to)TUPLE [A, B],toTUPLE [A]and toTUPLE(without parameters), the topmost tuple type to which all tuple types conform.

Agents

edit

Eiffel's "agent" mechanism wraps operations into objects. This mechanism can be used for iteration,event-driven programming,and other contexts in which it is useful to pass operations around the program structure. Other programming languages, especially ones that emphasizefunctional programming,allow a similar pattern usingcontinuations,closures,orgenerators;Eiffel's agents emphasize the language's object-oriented paradigm, and use a syntax and semantics similar to code blocks inSmalltalkandRuby.

For example, to execute themy_actionblock for each element ofmy_list,one would write:

my_list.do_all(agentmy_action)

To executemy_actiononly on elements satisfyingmy_condition,a limitation/filter can be added:

my_list.do_if(agentmy_action,agentmy_condition)

In these examples,my_actionandmy_conditionare routines. Prefixing them withagentyields an object that represents the corresponding routine with all its properties, in particular the ability to be called with the appropriate arguments. So ifarepresents that object (for example becauseais the argument todo_all), the instruction

a.call([x])

will call the original routine with the argumentx,as if we had directly called the original routine:my_action (x).Arguments tocallare passed as a tuple, here[x].

It is possible to keep some arguments to an agentopenand make othersclosed.The open arguments are passed as arguments tocall:they are provided at the time ofagent use.The closed arguments are provided at the time of agentdefinition.For example, ifaction2has two arguments, the iteration

my_list.do_all(agentaction2(?,y))

iteratesaction2 (x, y)for successive values ofx,where the second argument remains set toy.The question mark?indicates an open argument;yis a closed argument of the agent. Note that the basic syntaxagent fis a shorthand foragent f (?,?,...)with all arguments open. It is also possible to make thetargetof an agent open through the notation{T}?whereTis the type of the target.

The distinction between open and closed operands (operands = arguments + target) corresponds to the distinction between bound and free variables inlambda calculus.An agent expression such asaction2 (?, y)with some operands closed and some open corresponds to a version of the original operationcurriedon the closed operands.

The agent mechanism also allows defining an agent without reference to an existing routine (such asmy_action,my_condition,action2), through inline agents as in

my_list.do_all(agent(s:STRING)
require
not_void:s/=Void
do
s.append_character(',')
ensure
appended:s.count=olds.count+1
end)

The inline agent passed here can have all the trappings of a normal routine, including precondition, postcondition, rescue clause (not used here), and a full signature. This avoids defining routines when all that's needed is a computation to be wrapped in an agent. This is useful in particular for contracts, as in an invariant clause that expresses that all elements of a list are positive:

my_list.for_all(agent(x:INTEGER):BOOLEANdoResult:=(x>0)end)

The current agent mechanism leaves a possibility of run-time type error (if a routine withnarguments is passed to an agent expectingmarguments withm<n). This can be avoided by a run-time check through the preconditionvalid_argumentsofcall.Several proposals for a purely static correction of this problem are available, including a language change proposal by Ribet et al.[16]

Once routines

edit

A routine's result can be cached using theoncekeyword in place ofdo.Non-first calls to a routine require no additional computation or resource allocation, but simply return a previously computed result. A common pattern for "once functions" is to provide shared objects; the first call will create the object, subsequent ones will return the reference to that object. The typical scheme is:

shared_object:SOME_TYPE
once
createResult.make(args)
-- This creates the object and returns a reference to it through `Result'.
end

The returned object—Resultin the example—can itself be mutable, but its reference remains the same.

Often "once routines" perform a required initialization: multiple calls to a library can include a call to the initialization procedure, but only the first such call will perform the required actions. Using this pattern initialization can be decentralized, avoiding the need for a special initialization module. "Once routines" are similar in purpose and effect to thesingleton patternin many programming languages, and to theBorg patternused in Python.

By default, a "once routine" is calledonce per thread.The semantics can be adjusted toonce per processoronce per objectby qualifying it with a "once key", e.g.once ( "PROCESS" ).

Conversions

edit

Eiffel provides a mechanism to allow conversions between various types. The mechanisms coexists with inheritance and complements it. To avoid any confusion between the two mechanisms, the design enforces the following principle:

(Conversion principle) A type may not both conform and convert to another.

For example,NEWSPAPERmay conform toPUBLICATION,butINTEGERconverts toREAL(and does not inherit from it).

The conversion mechanism simply generalizes the ad hoc conversion rules (such as indeed betweenINTEGERandREAL) that exist in most programming languages, making them applicable to any type as long as the above principle is observed. For example, aDATEclass may be declared to convert toSTRING;this makes it possible to create a string from a date simply through

my_string:=my_date

as a shortcut for using an explicit object creation with a conversion procedure:

createmy_string.make_from_date(my_date)

To make the first form possible as a synonym for the second, it suffices to list the creation procedure (constructor)make_from_datein aconvertclause at the beginning of the class.

As another example, if there is such a conversion procedure listed fromTUPLE [day: INTEGER; month: STRING; year: INTEGER],then one can directly assign a tuple to a date, causing the appropriate conversion, as in

Bastille_day:=[14,"July",1789]

Exception handling

edit

Exception handlingin Eiffel is based on the principles of design by contract. For example, an exception occurs when a routine's caller fails to satisfy a precondition, or when a routine cannot ensure a promised postcondition. In Eiffel, exception handling is not used forcontrol flowor to correct data-input mistakes.

An Eiffel exception handler is defined using therescuekeyword. Within therescuesection, theretrykeyword executes the routine again. For example, the following routine tracks the number of attempts at executing the routine, and only retries a certain number of times:

connect_to_server(server:SOCKET)
-- Connect to a server or give up after 10 attempts.
require
server/=Voidandthenserver.address/=Void
local
attempts:INTEGER
do
server.connect
ensure
connected:server.is_connected
rescue
ifattempts<10then
attempts:=attempts+1
retry
end
end

This example is arguably flawed for anything but the simplest programs, however, because connection failure is to be expected. For most programs a routine name likeattempt_connecting_to_serverwould be better, and the postcondition would not promise a connection, leaving it up to the caller to take appropriate steps if the connection was not opened.

Concurrency

edit

A number of networking and threading libraries are available, such as EiffelNet and EiffelThreads. A concurrency model for Eiffel, based on the concepts of design by contract, isSCOOP,orSimple Concurrent Object-Oriented Programming,not yet part of the official language definition but available inEiffelStudio.CAMEO[17]is an (unimplemented) variation of SCOOP for Eiffel. Concurrency also interacts with exceptions. Asynchronous exceptions can be troublesome (where a routine raises an exception after its caller has itself finished).[18]

Operator and bracket syntax, assigner commands

edit

Eiffel's view of computation is completely object-oriented in the sense that every operation is relative to an object, the "target". So for example an addition such as

a+b

is conceptually understood as if it were the method call

a.plus(b)

with targeta,featureplusand argumentb.

Of course, the former is the conventional syntax and usually preferred. Operator syntax makes it possible to use either form by declaring the feature (for example inINTEGER,but this applies to other basic classes and can be used in any other for which such an operator is appropriate):

plusalias"+"(other:INTEGER):INTEGER
--... Normal function declaration...
end

The range of operators that can be used as "alias" is quite broad; they include predefined operators such as "+" but also "free operators" made of non-alphanumeric symbols. This makes it possible to design special infix and prefix notations, for example in mathematics and physics applications.

Every class may in addition haveonefunction aliased to "[]", the "bracket" operator, allowing the notationa [i,...]as a synonym fora.f (i,...)wherefis the chosen function. This is particularly useful for container structures such as arrays,hash tables,lists etc. For example, access to an element of a hash table with string keys can be written

number:=phone_book["JILL SMITH"]

"Assigner commands" are a companion mechanism designed in the same spirit of allowing well-established, convenient notation reinterpreted in the framework of object-oriented programming. Assigner commands allow assignment-like syntax to call "setter" procedures. An assignment proper can never be of the forma.x:= vas this violates information hiding; you have to go for a setter command (procedure). For example, the hash table class can have the function and the procedure

itemalias"[]"(key:STRING):ELEMENT[3]
-- The element of key `key'.
-- ( "Getter" query)
do
...
end

put(e:ELEMENT;key:STRING)
-- Insert the element `e', associating it with the key `key'.
-- ( "Setter" command)
do
...
end

Then to insert an element you have to use an explicit call to the setter command:

[4]phone_book.put(New_person,"JILL SMITH")

It is possible to write this equivalently as

[5]phone_book["JILL SMITH"]:=New_person

(in the same way thatphone_book [ "JILL SMITH" ]is a synonym fornumber:= phone_book.item ( "JILL SMITH" )), provided the declaration ofitemnow starts (replacement for [3]) with

itemalias"[]"(key:STRING):ELEMENTassignput

This declaresputas the assigner command associated withitemand, combined with the bracket alias, makes [5] legal and equivalent to [4]. (It could also be written, without taking advantage of the bracket, asphone_book.item ( "JILL SMITH" ):= New_person.

Note: The argument list of a's assigner is constrained to be: (a's return type;all of a's argument list...)

Lexical and syntax properties

edit

Eiffel is not case-sensitive. The tokensmake,maKeandMAKEall denote the same identifier. See, however, the "style rules" below.

Comments are introduced by--(two consecutive dashes) and extend to the end of the line.

The semicolon, as instruction separator, is optional. Most of the time the semicolon is just omitted, except to separate multiple instructions on a line. This results in less clutter on the program page.

There is no nesting of feature and class declarations. As a result, the structure of an Eiffel class is simple: some class-level clauses (inheritance, invariant) and a succession of feature declarations, all at the same level.

It is customary to group features into separate "feature clauses" for more readability, with a standard set of basic feature tags appearing in a standard order, for example:

classHASH_TABLE[ELEMENT,KEY->HASHABLE]inheritTABLE[ELEMENT]

feature-- Initialization
--... Declarations of initialization commands (creation procedures/constructors)...

feature-- Access
--... Declarations of non-Boolean queries on the object state, e.g. item...

feature-- Status report
--... Declarations of Boolean queries on the object state, e.g. is_empty...

feature-- Element change
--... Declarations of commands that change the structure, e.g. put...

-- etc.
end

In contrast to mostcurly bracket programming languages,Eiffel makes a clear distinction between expressions and instructions. This is in line with theCommand-Query Separationprinciple of the Eiffel method.

Style conventions

edit

Much of the documentation of Eiffel uses distinctive style conventions, designed to enforce a consistent look-and-feel. Some of these conventions apply to the code format itself, and others to the standard typographic rendering of Eiffel code in formats and publications where these conventions are possible.

While the language is case-insensitive, the style standards prescribe the use of all-capitals for class names (LIST), all-lower-case for feature names (make), and initial capitals for constants (Avogadro). The recommended style also suggests underscore to separate components of a multi-word identifier, as inaverage_temperature.

The specification of Eiffel includes guidelines for displaying software texts in typeset formats: keywords in bold, user-defined identifiers and constants are shown initalics,comments, operators, and punctuation marks inRoman,with program text inblueas in the present article to distinguish it from explanatory text. For example, the "Hello, world!" program given above would be rendered as below in Eiffel documentation:

class
HELLO_WORLD
create
make
feature
make
do
print("Hello, world!")
end
end

Interfaces to other tools and languages

edit

Eiffel is a purely object-oriented language but provides anopen architecturefor interfacing with "external" software in any other programming language.

It is possible for example to program machine- and operating-system level operations inC.Eiffel provides a straightforward interface to C routines, including support for "inline C" (writing the body of an Eiffel routine in C, typically for short machine-level operations).

Although there is no direct connection between Eiffel and C, many Eiffelcompilers(Visual Eiffelis one exception) output Csource codeas anintermediate language,to submit to a C compiler, foroptimizingandportability.As such, they are examples oftranscompilers.The Eiffel Compiler tecomp can execute Eiffel code directly (like an interpreter) without going via an intermediate C code or emit C code which will be passed to a C compiler in order to obtain optimized native code. On.NET, theEiffelStudiocompiler directly generatesCIL(Common Intermediate Language) code. TheSmartEiffelcompiler can also outputJava bytecode.

References

edit
  1. ^"Eiffel in a Nutshell".archive.eiffel.com.Retrieved24 August2017.
  2. ^"EiffelStudio 24.05 is available!".Eiffel.org.14 June 2024.
  3. ^Cooper, Peter (2009).Beginning Ruby: From Novice to Professional.Beginning from Novice to Professional (2nd ed.). Berkeley: APress. p. 101.ISBN978-1-4302-2363-4.To a lesser extent, Python, LISP, Eiffel, Ada, and C++ have also influenced Ruby.
  4. ^"Eiffel – the Language".berenddeboer.net.Retrieved6 July2016.
  5. ^Meyer, Bertrand (2009-08-28).Touch of Class: Learning to Program Well with Objects and Contracts.Springer Science & Business Media.ISBN978-3-540-92144-8.
  6. ^"Programming Languages - Eiffel"(PDF).Department of Computer Science, Virginia Tech.Retrieved25 March2023.
  7. ^Carl Friess."Eiffel Syntax Guide".Eiffel Syntax Guide.Retrieved25 March2023.
  8. ^Claus Brabrand."The E I F F E L Programming Language"(PDF).IT University of Copenhagen.Retrieved25 March2023.
  9. ^Object-Oriented Software Construction,Second Edition, byBertrand Meyer,Prentice Hall, 1997,ISBN0-13-629155-4
  10. ^ECMA International: Standard ECMA-367 – Eiffel: Analysis, Design and Programming Language 2nd edition (June 2006); available online athttps://ecma-international.org/publications-and-standards/standards/ecma-367/
  11. ^International Organization for Standardization: Standard ISO/IEC DIS 25436, available online at[1]
  12. ^Bertrand Meyer: Overloading vs Object Technology, in Journal of Object-Oriented Programming (JOOP), vol. 14, no. 4, October–November 2001, availableonline
  13. ^"9 INHERITANCE".Archive.eiffel.com. 1997-03-23.Retrieved2013-07-08.
  14. ^"Multiple Inheritance and Interfaces".Artima.com. 2002-12-16.Retrieved2013-07-08.
  15. ^"Multiple Inheritance Is Not Evil".C2.com. 2007-04-28.Retrieved2013-07-08.
  16. ^Philippe Ribet, Cyril Adrian, Olivier Zendra, Dominique Colnet:Conformance of agents in the Eiffel language,inJournal of Object Technology,vol. 3, no. 4, April 2004, Special issue: TOOLS USA 2003, pp. 125-143. Available on line from theJOT article page
  17. ^Brooke, Phillip; Richard Paige (2008)."Cameo: An Alternative Model of Concurrency for Eiffel"(PDF).Formal Aspects of Computing.21(4). Springer: 363–391.doi:10.1007/s00165-008-0096-1.S2CID18336088.
  18. ^Brooke, Phillip; Richard Paige (2007)."Exceptions in Concurrent Eiffel".Journal of Object Technology.6(10): 111–126.doi:10.5381/jot.2007.6.10.a4.
edit
  • Eiffel Softwareweb site of the company that introduced Eiffel, was Interactive Software Engineering (ISE).
  • LibertyEiffelweb site of the free GNU Eiffel development system.