Pointer vs. Reference - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T22:56:07Z http://stackoverflow.com/feeds/question/114180 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/114180/pointer-vs-reference 17 Pointer vs. Reference Jack Reza 2008-09-22T10:38:32Z 2008-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&amp; val) { val = 5; } func(x);</p> <p>or: void func2(unsigned long* val) { *val = 5; } func2(&amp;x);</p> <p>IOW: Is there any reason to pick one over another?</p> http://stackoverflow.com/questions/114180/pointer-vs-reference/114189#114189 32 Answer by Nils Pipenbrinck for Pointer vs. Reference Nils Pipenbrinck 2008-09-22T10:40:15Z 2008-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#114191 4 Answer by xtofl for Pointer vs. Reference xtofl 2008-09-22T10:41:29Z 2008-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#114226 1 Answer by Nils Pipenbrinck for Pointer vs. Reference Nils Pipenbrinck 2008-09-22T10:55:10Z 2008-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 &amp; f; int othermember; bar (foo &amp; 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#114351 10 Answer by Johann Gerell for Pointer vs. Reference Johann Gerell 2008-09-22T11:37:17Z 2008-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#114380 0 Answer by NotJarvis for Pointer vs. Reference NotJarvis 2008-09-22T11:43:55Z 2008-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#114769 2 Answer by Aaron N. Tubbs for Pointer vs. Reference Aaron N. Tubbs 2008-09-22T13:11:31Z 2008-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#115486 0 Answer by for Pointer vs. Reference 2008-09-22T15:23:53Z 2008-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#115518 1 Answer by Max Caceres for Pointer vs. Reference Max Caceres 2008-09-22T15:28:12Z 2008-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#213963 1 Answer by Kiley Hykawy for Pointer vs. Reference Kiley Hykawy 2008-10-17T21:53:19Z 2008-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&lt;std::string&gt;&amp; optional_str) { if (optional_str) { cout &lt;&lt; *optional_str &lt;&lt; std::endl; } else { cout &lt;&lt; "(no string)" &lt;&lt; std::endl; } } // Sample method using optional as return value boost::optional&lt;int&gt; ReturnOptional(bool return_nothing) { if (return_nothing) { return boost::optional&lt;int&gt;(); } return boost::optional&lt;int&gt;(42); } </code></pre> http://stackoverflow.com/questions/114180/pointer-vs-reference/214034#214034 0 Answer by Earwicker for Pointer vs. Reference Earwicker 2008-10-17T22:22:19Z 2008-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>