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: f5d71,d275ffeffdf83655 X-Google-Attributes: gidf5d71,public X-Google-Thread: 109fba,d275ffeffdf83655 X-Google-Attributes: gid109fba,public X-Google-Thread: 146b77,d275ffeffdf83655 X-Google-Attributes: gid146b77,public X-Google-Thread: 103376,d275ffeffdf83655 X-Google-Attributes: gid103376,public From: mike Subject: Re: Ada vs C++ vs Java Date: 1999/02/08 Message-ID: <79mkqd$7to@drn.newsguy.com>#1/1 X-Deja-AN: 441961943 References: <369C1F31.AE5AF7EF@concentric.net> <369DDDC3.FDE09999@sea.ericsson.se> <369e309a.32671759@news.demon.co.uk> <77ledn$eu7$1@remarQ.com> <77pnqc$cgi$1@newnews.global.net.uk> <8p64spq5lo5.fsf@Eng.Sun.COM> <77t3ld$nou$1@nnrp1.dejanews.com> <79ce4s$lfq$1@nnrp1.dejanews.com> <79chc7$ko6@drn.newsguy.com> <36BAF083.6C413B3D@acenet.com.au> <79evj0$49g@drn.newsguy.com> <36BECC3E.E5D1723F@acenet.com.au> Organization: Newsguy News Service [http://www.newsguy.com] Newsgroups: comp.lang.ada,comp.lang.c++,comp.vxworks,comp.lang.java Date: 1999-02-08T00:00:00+00:00 List-Id: In article <36BECC3E.E5D1723F@acenet.com.au>, Geoff says... > >> >> anyone nowadays still doing such silly errors as falling of the end >> of an array because they dont use standard STL containers, do not deserve >> to be programming in any language. > >Are you saying that when I want an array of objects >that I should use an STL abstraction rather than the languages >built in array type?? > Yes. offcourse. Just like only a fool (or a bignner) would use a null terminated char array to hold a string, when the C++ standard library comes with a build-in string class for doing that. >This is ridiculous! It is not. You are given a safe, tested, and higher level and easier to use containers such as a vector or string, so use them. if you insist on using more primitive data types (which using could result in more user errors), then you got only yourself to blame. C++ standard library provides one with tools to use the langauge in safe manner. get used to using it. Mike.