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,bb72f760079ae185 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-06-28 17:15:15 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!newsfeed.berkeley.edu!news-hog.berkeley.edu!ucberkeley!nntp-relay.ihug.net!ihug.co.nz!cox.net!p02!news2.central.cox.net.POSTED!53ab2750!not-for-mail Message-ID: <3D1CFBD5.5000703@telepath.com> From: Ted Dennison User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.0) Gecko/20020530 X-Accept-Language: en-us, en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Elaboration Schmelaboration... References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Date: Sat, 29 Jun 2002 00:15:13 GMT NNTP-Posting-Host: 68.12.51.201 X-Complaints-To: abuse@cox.net X-Trace: news2.central.cox.net 1025309713 68.12.51.201 (Fri, 28 Jun 2002 20:15:13 EDT) NNTP-Posting-Date: Fri, 28 Jun 2002 20:15:13 EDT Organization: Cox Communications Xref: archiver1.google.com comp.lang.ada:26784 Date: 2002-06-29T00:15:13+00:00 List-Id: Marin David Condic wrote: > O.K., but C++ also has declarations, so there *is* an analogy. Granted, the > whole scheme of things is dramatically different, (Header files don't > actually "execute" and inclusion of such things is lexical inclusion, etc.) > but you can see the same sort of things happening. When declaring an object > of a given class, space is allocated, its constructors are executed, etc. > That would be "elaboration" in a broad sense of the word. Closer would be the initialization of C++ static members, particularly if you assign initial values based on a function call. You can even get into some of the same issues, if you do this a lot and some of the initilizations depend on other static members being initialized.