Tagged Questions
Eiffel is a statically typed object-oriented programming language closely related with the programming method of the same name. Both are based on a set of principles like Design by Contract, Command-Query Separation, Uniform Access, etc. Many concepts initially introduced by Eiffel find their way to C#, Java and other languages. The program in Eiffel can be compiled unchanged for almost any target platform.
17
votes
8answers
3k views
What do you think about the Eiffel programming language? [closed]
I think it's a very carefully designed language. I like the programming concepts it promotes. After the first touch I was very impressed.
I was wondering if there are any job ads for this language. ...
11
votes
7answers
630 views
Various questions regarding pure OO (Getting set up WITHOUT an ide; Tutorials; The associated books)
I've been wanting to get into a pure-OO language for a while now, but I'm put off by the fact that they all seem to demand an IDE and I can't find any good tutorials that aren't in video format.
I'm ...
8
votes
2answers
561 views
How does .NET 4.0's design by contract compare to Eiffel?
I had the "pleasure" to be taught Eiffel at college by none other than Bertrand Meyer himself and just read that .NET 4.0 will include design by contract.
Can anyone with some insight elaborate on ...
4
votes
6answers
183 views
Is there an beautiful way to assert pre-conditions in Java methods?
A lot of my functions have a whole load of validation code just below the declarations:
if ( ! (start < end) ) {
throw new IllegalStateException( "Start must be before end." );
}
I'd ...
4
votes
7answers
567 views
Simple UML Drawing Tool for Windows That Supports Eiffel
I don't want anything that reads or generates code just drawing diagrams.
I also must be able to enter code as text because i'm pretty sure it will not support the Eiffel langauge and i really don't ...
3
votes
3answers
218 views
How does Racket Scheme's “design by contract” features different from Eiffel?
I know that both Eiffel (the progenitor) and Racket both to implement "Design by Contract" features. Sadly, I am not sure how one would different from the other. Eiffel's DBC is reliant on the OOP ...
3
votes
7answers
389 views
Object-Oriented Callbacks for C++?
Is there some library that allows me to easily and conveniently create Object-Oriented callbacks in c++?
the language Eiffel for example has the concept of "agents" which more or less work like this:
...
3
votes
2answers
117 views
Could we use EiffelBuild for large project or should we restrict its use for prototyping?
EiffelBuild is the ISE GUI-building graphical tool dedicated to Eiffel.
I try it and I find it very user-friendly, but I'm a little bit concerned about using such a tool for a large project. The use ...
2
votes
2answers
70 views
Eiffel “create” over C++ constructor?
What is the difference between C++'s constructor and Eiffels create procedure declaration?
What value is there in being able to have multiple constructor functions for a class? Or is there any other ...
2
votes
1answer
56 views
How to initialize a local variable in its declaration in Eiffel?
I tried to do this:
local
condition: BOOLEAN
condition := true
do
And something like this:
local
condition: BOOLEAN := true
do
Obviously neither work, but I need to initialize a ...
2
votes
1answer
71 views
“Using” or “import” clause in eiffel text
Is there a clause for including/using/import other classes, or maybe that's the Add Library part in eiffel studio?
if so, how would you do it in a text editor based environment?
a very noob question, ...
2
votes
1answer
85 views
How can I turn a big chunk of native code into a scalable service?
Greetings,
I have a large piece of software developed in Eiffel. It is possible to use this code from C++, but it loads Eiffel runtime, and I can't trust the Eiffel code and runtime to be thread ...
2
votes
1answer
98 views
Eiffel: loosening the pre-conditions and tightening the post-conditions?
In Eiffel it is said that we should "loosen the pre-conditions and tightening the post-conditions", but I am not sure what this means. How does this benefit/is benefited by sub-classing?
Thank you
2
votes
1answer
123 views
Passing type argument to Eiffel method
I would like to write a cast method in Eiffel which takes 'the type to cast to' as a type parameter. Is there a way to pass a type into a method in Eiffel.
The only alternative I can think of is to ...
1
vote
1answer
66 views
Where evaluate invariants after and before call a routine?
In the design by contracts, the class invariant must be satisfied on two occasions: after creating the object and after call a routine. Are there any examples or conditions, which I have to do the ...
1
vote
1answer
69 views
Clone and equal method in Eiffel [closed]
Why define a clone or equal method in Eiffel gives greater protection with respect to types problems in comparison to something similar in C#?
1
vote
1answer
149 views
How to initialise an array of objects in Eiffel?
I am trying to implement asolution to the Producer-Consumer problem using Eiffel. I have an array p of type PRODUCER and an array c of type CONSUMER declared and initialised as follows:
...
1
vote
1answer
111 views
Eiffel regular expression validation
all,
how do you create a regular expression for a certain string? and can you do it in the Assertion (precondition part of the code) ?
i've been google-ing around but couldn't get anything convincing.
...
1
vote
2answers
135 views
multiple inheritance in Eiffel
Hoi,The multiple inheritance in eiffel really confused me ,can anybody tell me what class French_Us_Driver inherit from all its parent-class.
class Driver
feature(ANY)
violation
...
1
vote
1answer
87 views
How to traverse a directory in eiffel?
Simple
How can I get a list of the files that are inside directory using eiffel?
1
vote
1answer
108 views
How to format a DOUBLE to print only two decimals in Eiffel?
In eiffel how do you make it so that the number.
118.1999999999999
prints to:
118.20
In other language is simply a matter of printf but there seems no to be a way to do that easily in Eiffel.
1
vote
0answers
34 views
Effel: EiffelVision2 changing widget style
I'm joining an Eiffel project that has a horribly outdated GUI design. The GUI is built with EiffelVision2 and the application is Windows platform only.
how can I change the look/design of the ...
0
votes
1answer
32 views
EiffelStudio, project read-only: cannot compile
I'm making a shared project with my university in Eiffel. I've just downloaded the project and I've got this problem:
We have to work on a NameProject_as_library.ecf, so we have to work on an ...
0
votes
1answer
37 views
Eiffel redefined function can define his own assertions?
I need to know if a redefined function in Eiffel can define his own assertions.
0
votes
3answers
272 views
Experiences in learning Eiffel [closed]
Does anyone have any experiences in learning the language Eiffel.
Is the Eiffel Studio like Visual Studio?
Is it a good route to take to learn OOP?
etc.