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: 103376,7a2d45f282a1da1c X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-09-08 00:46:27 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!newsmi-us.news.garr.it!NewsITBone-GARR!area.cu.mi.it!newsfeeder.edisontel.com!fu-berlin.de!uni-berlin.de!tar-alcarin.cbb-automation.DE!not-for-mail From: Dmitry A. Kazakov Newsgroups: comp.lang.ada Subject: Re: float with 24-bit resolution Date: Mon, 08 Sep 2003 09:53:48 +0200 Message-ID: References: <3f405ef4$1_1@news.tm.net.my> <3f54bf19_1@news.tm.net.my> <_x36b.22730$su.613585@news20.bellglobal.com> NNTP-Posting-Host: tar-alcarin.cbb-automation.de (212.79.194.111) Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de 1063007185 19922291 212.79.194.111 (16 [77047]) X-Newsreader: Forte Agent 1.8/32.548 Xref: archiver1.google.com comp.lang.ada:42264 Date: 2003-09-08T09:53:48+02:00 List-Id: On Fri, 5 Sep 2003 14:37:12 -0500, "Randy Brukardt" wrote: >The problem here is the inconsistence of the language. Some types can be >implicitly initialized, and others cannot. I think that the language should not allow implicitly uninitialized objects. Things like: X : Integer; should be made illegal. There should be some syntax sugar to state that the above is exactly what the programmer wants: X : Integer := <>; -- OK, that's your problem now With implicit initialization of some types, code readers have a puzzle: X : Foo; -- is that initialized or not? Should he read specifications to figure out? --- Regards, Dmitry Kazakov www.dmitry-kazakov.de