Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.c++ > #5528

Re: Lets put it another way

Path csiph.com!x330-a1.tempe.blueboxinc.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!border3.nntp.dca.giganews.com!border1.nntp.dca.giganews.com!nntp.giganews.com!postnews.google.com!a10g2000vbz.googlegroups.com!not-for-mail
From "Joel C. Salomon" <joelcsalomon@gmail.com>
Newsgroups comp.lang.c++
Subject Re: Lets put it another way
Date Wed, 25 May 2011 13:56:57 -0700 (PDT)
Organization http://groups.google.com
Lines 30
Message-ID <50ea09dc-e559-40dd-b42e-c7adbfe526fa@a10g2000vbz.googlegroups.com> (permalink)
References <bEDCp.16705$Am5.10787@newsfe05.ams2> <940g82Ft2pU20@mid.individual.net> <eb724d42-4a22-44aa-91ab-1a58972eabb6@e17g2000prj.googlegroups.com> <54LCp.9990$A05.6001@newsfe13.ams2> <f830366e-f74d-4d92-9259-2b6faed3d6ee@q12g2000prb.googlegroups.com> <43dce855-221c-4bf0-b491-abe2d5e5fc49@22g2000prx.googlegroups.com> <JMOCp.16682$h35.12580@newsfe19.ams2> <b6334244-434f-4c62-954b-c9b197253f8b@p13g2000yqh.googlegroups.com> <dIWCp.26006$7H.21654@newsfe08.ams2> <70ecc085-405f-41c0-b191-c29ea6f3f971@18g2000prd.googlegroups.com> <iq4Dp.17102$h35.12700@newsfe19.ams2> <c21ddc21-dfec-4bf4-9128-9c53125107db@dn9g2000vbb.googlegroups.com> <c040a44a-9a0d-4435-9c90-0e37c9a43f2e@r35g2000prj.googlegroups.com>
NNTP-Posting-Host 148.106.4.6
Mime-Version 1.0
Content-Type text/plain; charset=ISO-8859-1
Content-Transfer-Encoding quoted-printable
X-Trace posting.google.com 1306357097 26240 127.0.0.1 (25 May 2011 20:58:17 GMT)
X-Complaints-To groups-abuse@google.com
NNTP-Posting-Date Wed, 25 May 2011 20:58:17 +0000 (UTC)
Complaints-To groups-abuse@google.com
Injection-Info a10g2000vbz.googlegroups.com; posting-host=148.106.4.6; posting-account=thoOfwoAAADTMABKgzOcrqI_CkQiYVdh
User-Agent G2/1.0
X-Google-Web-Client true
X-Google-Header-Order ASELCHRU
X-HTTP-UserAgent Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.772.0 Safari/535.1,gzip(gfe)
Xref x330-a1.tempe.blueboxinc.net comp.lang.c++:5528

Show key headers only | View raw


On May 25, 4:42 pm, Joshua Maurice <joshuamaur...@gmail.com> wrote:
> On May 25, 12:32 pm, "Joel C. Salomon" <joelcsalo...@gmail.com> wrote:
> > On May 25, 5:59 am, "Paul" <pchris...@yahoo.co.uk> wrote:
> > > If there is no such thing as an array type object then what is the object
> > > that is implicitly converted to a pointer, and stores a memory address?
>
> > That's the *name* of the array that implicitly converts to a pointer.
> > The name is a compile-time concept, though, and does not quite
> > correspond to what the Standard calls an "object".
>
> No. There is an array object, and it is implicitly converted to a
> pointer to the first element. Consider:
>
>   int x[3];
>   int (*y)[3] = x;
>   int* z = *y;
>
> y is not the identifier of the array object. y is a pointer which
> points to the array object. Derefencing y gives an expression of array
> type, specifically "int[3]". Then a standard conversion sequence is
> applied using the array-to-pointer conversion in the assignment to z.

I didn't think that would work until I tried it (including the "... =
&x;" fix you posted); I stand corrected.

Thank you.

--Joel

Back to comp.lang.c++ | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-24 02:14 +0100
  Re: Lets put it another way Ian Collins <ian-news@hotmail.com> - 2011-05-24 13:33 +1200
    Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-23 18:39 -0700
      Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-24 10:42 +0100
        Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-24 03:00 -0700
          Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-24 03:03 -0700
            Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-24 14:54 +0100
              Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-24 13:46 -0700
                Re: Lets put it another way Leigh Johnston <leigh@i42.co.uk> - 2011-05-24 21:49 +0100
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-24 23:56 +0100
                Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-24 16:51 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-25 10:59 +0100
                Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-25 03:51 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-25 12:49 +0100
                Re: Lets put it another way "Joel C. Salomon" <joelcsalomon@gmail.com> - 2011-05-25 12:32 -0700
                Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-25 13:42 -0700
                Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-25 13:48 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-25 21:55 +0100
                Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-25 13:59 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-25 22:08 +0100
                Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-25 14:29 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-25 22:56 +0100
                Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-25 15:10 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-25 23:53 +0100
                Re: Lets put it another way "Joel C. Salomon" <joelcsalomon@gmail.com> - 2011-05-25 15:02 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-25 23:37 +0100
                Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-25 16:03 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-26 00:19 +0100
                Re: Lets put it another way Leigh Johnston <leigh@i42.co.uk> - 2011-05-26 00:29 +0100
                Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-25 16:30 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-26 00:58 +0100
                Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-25 17:10 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-26 01:26 +0100
                Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-25 17:54 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-26 10:42 +0100
                Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-26 03:06 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-26 11:25 +0100
                Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-26 03:33 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-26 12:56 +0100
                Re: Lets put it another way Vidar Hasfjord <vattilah-groups@yahoo.co.uk> - 2011-05-25 16:09 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-26 00:20 +0100
                Re: Lets put it another way "Joel C. Salomon" <joelcsalomon@gmail.com> - 2011-05-25 13:56 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-25 22:18 +0100
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-25 12:45 +0100
                Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-25 13:47 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-25 22:03 +0100
          Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-24 14:32 +0100
            Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-24 14:16 -0700
              Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-25 00:00 +0100
    Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-24 10:20 +0100
      Re: Lets put it another way Ian Collins <ian-news@hotmail.com> - 2011-05-24 22:27 +1200
        Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-24 13:58 +0100
          Re: Lets put it another way Ian Collins <ian-news@hotmail.com> - 2011-05-25 07:36 +1200
            Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-24 21:11 +0100
              Re: Lets put it another way Oliver Jackson <chexmofo@hotmail.com> - 2011-05-24 16:04 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-26 11:27 +0100
              Re: Lets put it another way Ian Collins <ian-news@hotmail.com> - 2011-05-25 12:03 +1200
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-25 11:13 +0100
                Re: Lets put it another way Ian Collins <ian-news@hotmail.com> - 2011-05-26 09:19 +1200
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-25 22:39 +0100
                Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-25 14:45 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-25 23:01 +0100
                Re: Lets put it another way Leigh Johnston <leigh@i42.co.uk> - 2011-05-25 22:48 +0100
                Re: Lets put it another way Ian Collins <ian-news@hotmail.com> - 2011-05-26 09:57 +1200
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-25 23:09 +0100
                Re: Lets put it another way Ian Collins <ian-news@hotmail.com> - 2011-05-26 10:17 +1200
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-25 23:56 +0100
                Re: Lets put it another way Ian Collins <ian-news@hotmail.com> - 2011-05-26 13:04 +1200
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-26 10:47 +0100
                Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-25 15:17 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-26 00:03 +0100
                Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-25 16:14 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-26 00:32 +0100
                Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-25 16:39 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-26 01:18 +0100
                Re: Lets put it another way Joshua Maurice <joshuamaurice@gmail.com> - 2011-05-25 17:52 -0700
                Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-26 10:53 +0100
  Re: Lets put it another way Vidar Hasfjord <vattilah-groups@yahoo.co.uk> - 2011-05-25 15:31 -0700
    Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-25 23:58 +0100
      Re: Lets put it another way Vidar Hasfjord <vattilah-groups@yahoo.co.uk> - 2011-05-25 16:54 -0700
        Re: Lets put it another way "Paul" <pchristor@yahoo.co.uk> - 2011-05-26 01:00 +0100

csiph-web