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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6b6619eb9cada212 X-Google-Attributes: gid103376,public From: Preben Randhol Subject: Re: Help me to chose between ADA 95 and C++ Date: 1999/11/26 Message-ID: #1/1 X-Deja-AN: 553266399 References: <01bf37fb$a91afb60$0564a8c0@IS-D2D04C.test> X-Complaints-To: usenet@itea.ntnu.no X-Trace: kopp.stud.ntnu.no 943615789 22676 129.241.83.82 (26 Nov 1999 11:29:49 GMT) Organization: ProgramVareVerkstedet NNTP-Posting-Date: 26 Nov 1999 11:29:49 GMT Newsgroups: comp.lang.ada Date: 1999-11-26T11:29:49+00:00 List-Id: "Robert" writes: [...] | between ADA 95 and C++.I don't know anything about ADA 95 | ,but I hearded that is wey good object oriented language, wey safe. | Please send me your opinion and answers to my questions: Look at these pages: http://www.adaic.org/intro/ http://www.adaic.org/jobs/ http://www.AdaPower.com/ | 2)Does exist any tool and library for GUI design with ADA 95 | on Windows 95/NT or X-Windows, comercial or free ? Here is one that is free. http://gtkada.eu.org/ | 4)Is learning ADA 95 and profesional programing, debuging | easiest than do this in C++ ? Personally I find Ada95 easier to learn than C++. One of the big advantages with Ada 95 is the strict typing. This means that the compiler will catch a lot of your mistakes and tell you. Thus you find many of the bugs at compile-time rather during execution of the program (if using a less strict typing language). Therefore you will probably be able to reduce time you have to spend with the debugger. I'm using the GNAT Ada95 compiler (http://www.gnat.com). I find it very good. Not only does it tell me that I have done something wrong, but sometimes it can also spot the reason why it is wrong. Like yesterday I had forgotten to put: with Ada.Text_IO; use Ada.Text_IO; in one of the files, and the compiler suggested that there might be a missing Text_IO as I was trying to use Put_Line. One also has the ability to turn on style checking. That is the compiler will check for proper indentation of the code and other tihngs. This is very nice for a newbie like me at least. But other Ada 95 compilers might have the same nice functionality, I have just tried GNAT. -- Preben Randhol "Marriage is when you get to keep [randhol@pvv.org] your girl and don't have to give [http://www.pvv.org/~randhol/] her back to her parents." (Eric, 6)