Re: Function arguments: References vs pointers
On Jun 17, 5:43 am, Rune Allnor <all...@tele.ntnu.no> wrote:
Except for the source code being easier to read by the human
when using references, are there more differences between the
two forms?
The value class is the first citizen class, not the reference class
like in java and C#. The pointer has the value semetic, but the
reference not. So in practice, you may find reference is not so
directly like pointer.
let me give an example with boost::bind.
void f(int i,int&j)
{
j = i;
}
void g(int i,int* j)
{
*j = i;
}
assume i have a int vector named my_ints, and i want to bind f and g
with it, i can do it like below:
std::vector my_ints;
// init my_ints;
int v = 0;
std::for_each(my_ints.begin(),my_ints.end(),std::bind(g,_1,&v));
std::for_each(my_ints.begin(),my_ints.end(),std::bind(f,_1,boost::ref(v)));
so you have to use a wrapper class to use with reference parameter.
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]