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=-0.4 required=5.0 tests=BAYES_00,FAKE_REPLY_C autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6e15e3f9aeb3d14a,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-08-20 14:40:00 PST Path: archiver1.google.com!newsfeed.google.com!newsfeed.stanford.edu!paloalto-snf1.gtei.net!news.gtei.net!enews.sgi.com!newshub2.rdc1.sfba.home.com!news.home.com!news2.POSTED!not-for-mail From: "McDoobie" Subject: Re: Anonymous array clarification.(Better idea, I think.) Newsgroups: comp.lang.ada User-Agent: Pan/0.8.1beta4 (Unix) X-No-Productlinks: Yes Message-ID: Date: Mon, 20 Aug 2001 21:40:00 GMT NNTP-Posting-Host: 24.0.109.49 X-Complaints-To: abuse@home.net X-Trace: news2 998343600 24.0.109.49 (Mon, 20 Aug 2001 14:40:00 PDT) NNTP-Posting-Date: Mon, 20 Aug 2001 14:40:00 PDT Organization: Excite@Home - The Leader in Broadband http://home.com/faster Xref: archiver1.google.com comp.lang.ada:12148 Date: 2001-08-20T21:40:00+00:00 List-Id: Okay, from the above posts in this thread, I think I might be getting somewhere. I'm thinking my problem stems from understanding the difference between an "Object" and a type. As I'm coming from a C background, Objects and Classes are real fuzzy for me. So if I say... type foo_array is array(1..N) of character; this would be an Object declaration. Then I would instantiate it thusly.... bar_array : foo_array; correct? However if I say... some_chars : array(1..N) of character; this would be just a simple array declaration, with none of the Object Oriented properties carried along with it. And with the Object "foo_array" declared above, I could say ... type Upper_Case is subtype foo_array; and it should work? Am I beginning to get the picture? McDoobie chris@dont.spam.me