From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 10a640,c1342e99de9bfbe3,start X-Google-Attributes: gid10a640,public X-Google-Thread: ffadb,c1342e99de9bfbe3,start X-Google-Attributes: gidffadb,public X-Google-Thread: 109fba,c1342e99de9bfbe3,start X-Google-Attributes: gid109fba,public X-Google-Thread: 103376,c1342e99de9bfbe3,start X-Google-Attributes: gid103376,public X-Google-Thread: 10d15b,c1342e99de9bfbe3,start X-Google-Attributes: gid10d15b,public X-Google-ArrivalTime: 2002-01-21 00:10:45 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: yvan.radenac@equant.com (Yvan Radenac) Newsgroups: comp.lang.ada,comp.lang.beta,comp.lang.c++,comp.lang.clos,comp.lang.cobol Subject: I need your experience - classification and comparison of languages Date: 21 Jan 2002 00:10:44 -0800 Organization: http://groups.google.com/ Message-ID: NNTP-Posting-Host: 195.6.68.65 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1011600645 1215 127.0.0.1 (21 Jan 2002 08:10:45 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 21 Jan 2002 08:10:45 GMT Xref: archiver1.google.com comp.lang.ada:19130 comp.lang.beta:293 comp.lang.c++:119739 comp.lang.clos:182 comp.lang.cobol:16824 Date: 2002-01-21T08:10:45+00:00 List-Id: I am writing a small report about "Object oriented languages and their public implementations" for a course in Software Engineering. I am trying to classify and compare different oo languages. As i am not programmer, analyst or responsible of projects and the criterias are subjective, i am interesting in your experiences of object oriented language(s). I think that there's no universal language, so it's not to compare, in a global way, each language. The goal is to create some tables to find the best choice for a kind of software development. Thanks you to complete the 2 tables below for each language you use. Classification: -------------- Language|Paradigm(s)|Generality of use|Abstraction level|Area(s) of application --------|-----------|-----------------|-----------------|---------------------- | | | | Comparison: ---------- It's based on this scale table (to simplify): Very bad|bad|Correct|Good|Very good| --------|---|-------|----|---------| - - | - | O | + | + + | Language|Readibility|Writability|Reliability|Cost --------|-----------|-----------|-----------|---- | | | | Regards, Yvan P.S.: a resume of the criterias, based on a course of The University of Ottawa by Szpakowicz: Classification: -------------- Paradigms: imperative, logic-based, functionnal, object-oriented, ... Generality of use: general purpose, specialized like database language, ... Abstraction level: low-level (assemblers), high-level (a majority of languages), very high level (Prolog) Area of application: data processing (business applications), scientific computing, artificial intelligence, in-house computing applications (compiler construction, systems programming, ...) Comparison: ---------- Readability: - abstraction, support for generality: procedural abstraction, data absraction. - absence of ambiguity (and of too much choice). - Orthogonality: no restrictions on combinations of concepts. For example, can a procedure parametrer have ANY type? Can EVERYTHING be evaluated? - Expressivity of control and data structures. (Exemples of low expressive power: machine languages). - Appearance: style of comments, ... Writability: - Abstraction and simplicy like readibility. - Expressivity, like readibility. - Modularity and tools for modularization, support for integrated programmer's environments. Reliability: - Safety for the programmer (type checking, error and exception handling, unambiguous naming). Cost: - Development time (ease of programming, availability of code). - Efficiency of implementation: how easy it is to build a language processor. - Translation time and quality of object code. - Portability and standardization.