Pointer vs. Reference - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T22:56:07Zhttp://stackoverflow.com/feeds/question/114180http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/114180/pointer-vs-reference17Pointer vs. ReferenceJack Reza2008-09-22T10:38:32Z2008-10-17T22:22:19Z
<p>What would be better practice when giving a function the original variable to work with:</p>
<p>unsigned long x = 4;</p>
<p>void func1(unsigned long& val) {
val = 5;
}
func(x);</p>
<p>or:
void func2(unsigned long* val) {
*val = 5;
}
func2(&x);</p>
<p>IOW: Is there any reason to pick one over another?</p>
http://stackoverflow.com/questions/114180/pointer-vs-reference/114189#11418932Answer by Nils Pipenbrinck for Pointer vs. ReferenceNils Pipenbrinck2008-09-22T10:40:15Z2008-09-22T10:40:15Z<p>My rule of thumb is:</p>
<p>Use pointers if you want to do arithmetic with them or if you ever have to pass a NULL-pointer.</p>
<p>Use references otherwise.</p>
http://stackoverflow.com/questions/114180/pointer-vs-reference/114191#1141914Answer by xtofl for Pointer vs. Referencextofl2008-09-22T10:41:29Z2008-09-22T10:41:29Z<p>You cannot store references, but you <em>can</em> store pointers. In any code that would need to store a pointer to an object in order to use it later on, I would prefer passing a pointer.</p>
<p>If the passed object is only intended to be used for the duration of the call, I would opt for the reference.</p>
http://stackoverflow.com/questions/114180/pointer-vs-reference/114226#1142261Answer by Nils Pipenbrinck for Pointer vs. ReferenceNils Pipenbrinck2008-09-22T10:55:10Z2008-09-22T10:55:10Z<p>@<a href="#114191" rel="nofollow">xtofl</a>,</p>
<p>Sure you can store references. Take a look:</p>
<pre><code>struct foo
{
int member;
};
struct bar
{
foo & f;
int othermember;
bar (foo & a_foo) : f(a_foo) {}
};
int main (int argc, char **args)
{
foo f;
f.member = 1;
bar b(f);
printf ("%d\n", b.f.member); // prints 1
}
</code></pre>
http://stackoverflow.com/questions/114180/pointer-vs-reference/114351#11435110Answer by Johann Gerell for Pointer vs. ReferenceJohann Gerell2008-09-22T11:37:17Z2008-09-22T20:04:22Z<p>I really think you will benefit from establishing the following function calling coding guidelines:</p>
<ol>
<li><p>As in all other places, always be <code>const</code>-correct.</p>
<ul>
<li>Note: This means, among other things, that only out-values (see item 3) and values passed by value (see item 4) can lack the <code>const</code> specifier.</li>
</ul></li>
<li><p>Only pass a value by pointer if the value 0/NULL is a valid input in the current context.</p>
<ul>
<li><p>Rationale 1: As <strong>a caller</strong>, you see that whatever you pass in <em>must be</em> in a usable state.</p></li>
<li><p>Rationale 2: As <strong>called</strong>, you know that whatever comes in <em>is</em> in a usable state. Hence, no NULL-check or error handling needs to be done for that value.</p></li>
<li><p>Rationale 3: Rationales 1 and 2 will be <em>compiler enforced</em>. Always catch errors at compile time if you can.</p></li>
</ul></li>
<li><p>If a function argument is an out-value, then pass it by reference.</p>
<ul>
<li>Rationale: We don't want to break item 2...</li>
</ul></li>
<li><p>Choose "pass by value" over "pass by const reference" only if the value is a POD or small enough (memory-wise) or in other ways cheap enough (time-wise) to copy.</p>
<ul>
<li>Rationale: Avoid unnecessary copies.</li>
<li>Note: <em>small enough</em> and <em>cheap enough</em> are not absolute measurables.</li>
</ul></li>
</ol>
http://stackoverflow.com/questions/114180/pointer-vs-reference/114380#1143800Answer by NotJarvis for Pointer vs. ReferenceNotJarvis2008-09-22T11:43:55Z2008-09-22T11:43:55Z<p>Pass by const reference unless there is a reason you wish to change/keep the contents you are passing in.</p>
<p>This will be the most efficient method in most cases.</p>
<p>Make sure you use const on each parameter you do not wish to change, as this not only protects you from doing something stupid in the function, it gives a good indication to other users what the function does to the passed in values. This includes making a pointer const when you only want to change whats pointed to...</p>
http://stackoverflow.com/questions/114180/pointer-vs-reference/114769#1147692Answer by Aaron N. Tubbs for Pointer vs. ReferenceAaron N. Tubbs2008-09-22T13:11:31Z2008-09-22T13:11:31Z<p>This ultimately ends up being subjective. The discussion thus far is useful, but I don't think there is a correct or decisive answer to this. A lot will depend on style guidelines and your needs at the time.</p>
<p>While there are some different capabilities (whether or not something can be NULL) with a pointer, the largest practical difference for an output parameter is purely syntax. Google's C++ Style Guide (<a href="http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml" rel="nofollow">http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml</a>), for example, mandates only pointers for output parameters, and allows only references that are const. The reasoning is one of readability: something with value syntax should not have pointer semantic meaning. I'm not suggesting that this is necessarily right or wrong, but I think the point here is that it's a matter of style, not of correctness.</p>
http://stackoverflow.com/questions/114180/pointer-vs-reference/115486#1154860Answer by for Pointer vs. Reference2008-09-22T15:23:53Z2008-09-22T15:23:53Z<p>A reference is an implicit pointer. Basically you can change the value the reference points to but you can't change the reference to point to something else. So my 2 cents is that if you only want to change the value of a parameter pass it as a reference but if you need to change the parameter to point to a different object pass it using a pointer.</p>
http://stackoverflow.com/questions/114180/pointer-vs-reference/115518#1155181Answer by Max Caceres for Pointer vs. ReferenceMax Caceres2008-09-22T15:28:12Z2008-09-22T15:28:12Z<p>You should pass a pointer if you are going to modify the value of the variable.
Even though technically passing a reference or a pointer are the same, passing a pointer in your use case is more readable as it "advertises" the fact that the value will be changed by the function.</p>
http://stackoverflow.com/questions/114180/pointer-vs-reference/213963#2139631Answer by Kiley Hykawy for Pointer vs. ReferenceKiley Hykawy2008-10-17T21:53:19Z2008-10-17T21:53:19Z<p>If you have a parameter where you may need to indicate the absence of a value, it's common practice to make the parameter a pointer value and pass in NULL.</p>
<p>A better solution in most cases (from a safety perspective) is to use <a href="http://www.boost.org/doc/libs/1_35_0/libs/optional/doc/html/index.html" rel="nofollow">boost::optional</a>. This allows you to pass in optional values by reference and also as a return value.</p>
<pre><code>// Sample method using optional as input parameter
void PrintOptional(const boost::optional<std::string>& optional_str)
{
if (optional_str)
{
cout << *optional_str << std::endl;
}
else
{
cout << "(no string)" << std::endl;
}
}
// Sample method using optional as return value
boost::optional<int> ReturnOptional(bool return_nothing)
{
if (return_nothing)
{
return boost::optional<int>();
}
return boost::optional<int>(42);
}
</code></pre>
http://stackoverflow.com/questions/114180/pointer-vs-reference/214034#2140340Answer by Earwicker for Pointer vs. ReferenceEarwicker2008-10-17T22:22:19Z2008-10-17T22:22:19Z<p>Consider C#'s out keyword. The compiler requires the caller of a method to apply the out keyword to any out args, even though it knows already if they are. This is intended to enhance readability. Although with modern IDEs I'm inclined to think that this is a job for syntax (or symantic) highlighting.</p>