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: fac41,e0a59694a441eb7b X-Google-Attributes: gidfac41,public X-Google-Thread: 109fba,e0a59694a441eb7b X-Google-Attributes: gid109fba,public X-Google-Thread: 1108a1,e0a59694a441eb7b X-Google-Attributes: gid1108a1,public X-Google-Thread: 103376,e0a59694a441eb7b X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-04-15 05:25:52 PST Path: archiver1.google.com!news1.google.com!news.glorb.com!news.tele.dk!news.tele.dk!small.news.tele.dk!irazu.switch.ch!switch.ch!news.grnet.gr!news.ntua.gr!not-for-mail From: "Ioannis Vranos" Newsgroups: comp.lang.c++,comp.lang.ada,comp.lang.eiffel,comp.object Subject: Re: OOP Language for OS Development Date: Thu, 15 Apr 2004 15:25:53 +0300 Organization: National Technical University of Athens, Greece Message-ID: References: <95db0572.0404142153.431fd058@posting.google.com> NNTP-Posting-Host: athe730d-2579.otenet.gr Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Trace: ulysses.noc.ntua.gr 1082031951 25114 62.103.217.38 (15 Apr 2004 12:25:51 GMT) X-Complaints-To: usenet@ulysses.noc.ntua.gr NNTP-Posting-Date: Thu, 15 Apr 2004 12:25:51 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1409 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Xref: archiver1.google.com comp.lang.c++:29746 comp.lang.ada:7134 comp.lang.eiffel:666 comp.object:10634 Date: 2004-04-15T15:25:53+03:00 List-Id: "KingIshu" wrote in message news:95db0572.0404142153.431fd058@posting.google.com... > Hi All, > I am developing an object oriented OS code-named "ikbocs". > 1) What are the pros and cons of the following languages interms of > Effectiveness on System Programming, Object Orientedness etc ? > (Simula, Smalltalk, Modula-3, Eiffel, Sather, C++) > I suppose Java is not suitable for Sys. Programming. > > 2) Which OOP language would be better for OS development? I 'll talk about C++ which is the language i know about. Both runtime and space efficiency was one of its design criteria. Abstraction facilities do not impose additional run-time or space cost than equivalent C-style code. "It leaves no room for a lower level programming language (except assembly)". It supports the OO paradigm, generic programming paradigm (templates), modular programming paradigm (namespaces) and procedural paradigm. Each paradigm is supported *well* and with space/run-time efficiency. Actually those are the reasons that i decided to learn C++ after i learned C. I think C++ is the best language out there and this not because of language fanatism. References: http://www.research.att.com/~bs/esc99.html http://www.research.att.com/~bs/bs_faq2.html http://www.research.att.com/~bs/ Ioannis Vranos