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.8 required=5.0 tests=BAYES_00,PLING_QUERY autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,aba9ec8a75fce75a X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-06-11 04:31:36 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!nntp.cs.ubc.ca!cyclone.bc.net!tdsnet-transit!newspeer.tds.net!news.binc.net!kilgallen From: Kilgallen@SpamCop.net (Larry Kilgallen) Newsgroups: comp.lang.ada Subject: Re: simple question?! (choice of the name "access type") Date: 11 Jun 2003 06:31:21 -0500 Organization: LJK Software Message-ID: References: NNTP-Posting-Host: eisner.encompasserve.org X-Trace: grandcanyon.binc.net 1055331044 20738 192.135.80.34 (11 Jun 2003 11:30:44 GMT) X-Complaints-To: abuse@binc.net NNTP-Posting-Date: Wed, 11 Jun 2003 11:30:44 +0000 (UTC) Xref: archiver1.google.com comp.lang.ada:38977 Date: 2003-06-11T06:31:21-05:00 List-Id: In article , vashwath@rediffmail.com (prashna) writes: > Hi all, > Why access types in Ada are called as access types?What can these > types access?why not it is called by some other name?Any pointers on > this will be appreciated. The value of an access type can be used to access objects of some other type (designated when the particular access type was declared). The other name which access types might have been called is "pointers", but they lack many of the aspects (drawbacks) of pointers in other languages: You cannot arbitrarily add to access types as one would do in C to walk down an array (or walk off the end of an array). Implementations are not required to implement access types as a pointer.