Re: Passing structs....
"Barry Schwarz" <schwarzb@dqel.com> wrote in message
news:eehvg4tjco9csc9ji7arradtbv79fpakcl@4ax.com
On Mon, 3 Nov 2008 19:33:36 -0500, "Igor Tandetnik"
<itandetnik@mvps.org> wrote:
Barry Schwarz <schwarzb@dqel.com> wrote:
#include <stdio.h>
void func(char y[500]){
printf("In func, sizeof y = %d\n", (int)sizeof y);
}
int main(void){
char x[500];
printf("In main, sizeof x = %d\n", (int)sizeof x);
func(x);
return 0;
}
If C had pass by reference, this would not produce two different
answers.
I'm not sure what this example is supposed to demonstrate. C++
indisputably does support pass-by-reference, and yet this program,
when compiled by a C++ compiler, still produces two different
answers. How exactly do you believe the conclusion follows from the
premise?
But a pass by reference in C++ would include the trailing &.
And a "pass by reference" in C would include the *. As in
#include <stdio.h>
void func(char (*y)[500]){
printf("In func, sizeof y = %d\n", (int)sizeof *y);
}
int main(void){
char x[500];
printf("In main, sizeof x = %d\n", (int)sizeof x);
func(&x);
return 0;
}
As it happens, this program does produce the same answer in both cases.
The assertion that passing the address of an object is equivalent to
passing by reference is misleading at best.
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.
--
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