POV-Ray : Newsgroups : povray.binaries.programming : [C++] Question about reinterpret_cast<> Server Time
28 Mar 2024 05:50:54 EDT (-0400)
  [C++] Question about reinterpret_cast<> (Message 1 to 3 of 3)  
From: Tim Chan
Subject: [C++] Question about reinterpret_cast<>
Date: 21 Nov 2001 13:40:20
Message: <3bfbf514$1@news.povray.org>
Hello, I'm studying C++ on my own and would appreciate some help.

In the following Program:-

#include <iostream>
using namespace std;
const int sz = 100;

struct X { int a[sz]; };

void print(X* x) {
  for(int i = 0; i < sz; i++)
    cout << x->a[i] << ' ';
  cout << endl << "--------------------" << endl;
}

int main() {
  X x;
  print(&x);

  int* xp = reinterpret_cast<int*>(&x);

  for(int* i = xp; i < xp + sz; i++)
    *i = 0;

  print(reinterpret_cast<X*>(xp));

} ///:~


I don't understand this line:

****   print(reinterpret_cast<X*>(xp));  ****

why do you pass 'xp' into the cast but not '&xp'....?
Because earlier you need to pass the address of x into the cast:

****  int* xp = reinterpret_cast<int*>(&x);  ****

Please help me cos i've been thinking about this for so unnecessarily long.

Cheers, Tim.


Post a reply to this message

From: Mark Wagner
Subject: Re: [C++] Question about reinterpret_cast<>
Date: 22 Nov 2001 00:35:22
Message: <3bfc8e9a@news.povray.org>
Tim Chan wrote in message <3bfbf514$1@news.povray.org>...
>Hello, I'm studying C++ on my own and would appreciate some help.


[program snipped]

>I don't understand this line:
>
>****   print(reinterpret_cast<X*>(xp));  ****
>
>why do you pass 'xp' into the cast but not '&xp'....?

xp is of type pointer to int, and you are converting it to the type pointer
to X.  &xp would be the address of xp, and would be of type pointer to
pointer to int.

>Because earlier you need to pass the address of x into the cast:
>
>****  int* xp = reinterpret_cast<int*>(&x);  ****


Here, x is of type X.  &x is the memory address of x, and is of type pointer
to X.  The reinterpret_cast converts that to type pointer to int.

--
Mark


Post a reply to this message

From: Warp
Subject: Re: [C++] Question about reinterpret_cast<>
Date: 1 Feb 2002 07:45:15
Message: <3c5a8ddb@news.povray.org>
Tim Chan <tim### [at] blueyondercouk> wrote:
: #include <iostream>
: using namespace std;
: const int sz = 100;

: struct X { int a[sz]; };

: void print(X* x) {
:   for(int i = 0; i < sz; i++)
:     cout << x->a[i] << ' ';
:   cout << endl << "--------------------" << endl;
: }

: int main() {
:   X x;
:   print(&x);

:   int* xp = reinterpret_cast<int*>(&x);

:   for(int* i = xp; i < xp + sz; i++)
:     *i = 0;

:   print(reinterpret_cast<X*>(xp));

: } ///:~

  I know I'm replying to a rather old message, but this code looked so
horrible, that I must reply.
  Firstly I think that it breaks the standard. One cannot assume that
the member variables of a struct start right at the beginning of the
struct.
  Secondly, why not just:

int main() {
  X x;
  print(&x);

  for(int i = 0; i < sz; ++i)
    x.a[i] = 0;

  print(&x);
}

  It's a lot nicer, doesn't use hacks and doesn't break the standard.

-- 
#macro N(D)#if(D>99)cylinder{M()#local D=div(D,104);M().5,2pigment{rgb M()}}
N(D)#end#end#macro M()<mod(D,13)-6mod(div(D,13)8)-3,10>#end blob{
N(11117333955)N(4254934330)N(3900569407)N(7382340)N(3358)N(970)}//  - Warp -


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.