Re: Passing structs....
"Barry Schwarz" <schwarzb@dqel.com> wrote in message
news:fpb0h49if5v83tbsfm362c4u5gtv7hlqu1@4ax.com
On Mon, 3 Nov 2008 23:44:01 -0500, "Igor Tandetnik"
<itandetnik@mvps.org> wrote:
What do you feel is the fundamental difference between
void f(int& x) { x = 42; }
and
void f(int* x) { *x = 42; }
? Are the exact details of the syntax so profoundly important? I
suspect these two functions would compile to identical machine code.
One fundamental difference is that with a true reference (as in C++),
the address of the reference is the address of the original object in
the calling function. This is not true when attempting to simulate
references with pointers.
Well, with C the "reference" is the pointer, and the pointer itself is
the address of the original object in the calling function. This too is
a purely syntactic distinction - the difference is in where the
address-of operator appears, in the caller or in the callee:
int n;
int* f(int& x) { return &x; }
int* p = f(n);
int* f(int* x) { return x; }
int* p = f(&n);
Again, I suspect these two fragments would compile to identical machine
code.
In general, barring C++-isms like copy-constructors or overloaded
operators (which references were invented to support syntactically), it
appears that every program involving references could be trivially,
mechanically transformed into an equivalent program without references,
using pointers instead.
I don't dispute that using a pointer can achieve the most frequent
intent of a reference, namely allowing the called function to alter
the contents of the original object.
What is the less frequent intent of a reference that cannot be achieved
with a pointer? Can you show an example?
But in a newsgroup that deals
with both the C and C++ aspects of VC, I think it is important for
beginners to appreciate that the languages are a great deal more
different than the intuitive conclusion based on a what appears to be
a significant amount of common syntax.
Well, my personal intuitive conclusion is that pointers and references
have much more in common than they have differences. Why shouldn't I be
allowed to help the gentle reader (beginner or otherwise) appreciate
this point?
--
With best wishes,
Igor Tandetnik
With sufficient thrust, pigs fly just fine. However, this is not
necessarily a good idea. It is hard to be sure where they are going to
land, and it could be dangerous sitting under them as they fly
overhead. -- RFC 1925