Naming convention for params of ctors and setters - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T23:20:18Zhttp://stackoverflow.com/feeds/question/450866http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/450866/naming-convention-for-params-of-ctors-and-setters4Naming convention for params of ctors and settersIraimbilanja2009-01-16T15:54:35Z2009-07-29T00:52:32Z
<p>For those of you who name you member variables with no special notation like <code>m_foo</code> or <code>foo_</code>, how do you name parameters to your ctors and setters?</p>
<p>Some options I've tried so far...</p>
<pre><code>Obj(int foo) : foo(foo) { }
void set_foo(int foo) { this->foo = foo; }
Obj(int _foo) : foo(_foo) { }
void set_foo(int _foo) { foo = _foo; }
Obj(int a_foo) : foo(a_foo) { } // a for "argument"
void set_foo(int a_foo) { foo = a_foo; }
Obj(int init_foo) : foo(init_foo) { }
void set_foo(int new_foo) { foo = new_foo; }
</code></pre>
http://stackoverflow.com/questions/450866/naming-convention-for-params-of-ctors-and-setters/450877#4508770Answer by Yann Semet for Naming convention for params of ctors and settersYann Semet2009-01-16T15:58:34Z2009-01-16T15:58:34Z<p>I always go for a Param or Arg suffix but only when disambiguation is necessary.</p>
<pre><code>Obj(int fooArg) : foo(fooArg)
</code></pre>
http://stackoverflow.com/questions/450866/naming-convention-for-params-of-ctors-and-setters/450887#4508878Answer by vava for Naming convention for params of ctors and settersvava2009-01-16T16:00:21Z2009-01-16T16:00:21Z<p>I'm using foo_, it's better than _foo since it won't conflict with implementation specific function names and keywords.</p>
http://stackoverflow.com/questions/450866/naming-convention-for-params-of-ctors-and-setters/450902#4509021Answer by Arcane for Naming convention for params of ctors and settersArcane2009-01-16T16:02:51Z2009-01-16T16:02:51Z<p>I tend to follow the first letter of the parameter that is being set, and disambiguate with this...</p>
<pre><code>void setFoo(int f) { foo = f; }
</code></pre>
<p>For a simple setter, for one variable, it is pretty well clear.</p>
<p>Also, I often do this</p>
<pre><code>int setFoo(const int f) { foo = f; }
</code></pre>
<p>so I can string things together.</p>
http://stackoverflow.com/questions/450866/naming-convention-for-params-of-ctors-and-setters/451015#4510156Answer by Johannes Schaub - litb for Naming convention for params of ctors and settersJohannes Schaub - litb2009-01-16T16:29:44Z2009-01-16T16:29:44Z<p>I'm going with</p>
<pre><code>Obj(int foo) : mFoo(foo) { }
void setFoo(int foo) { mFoo = foo; }
</code></pre>
<p>in my programs. For copy constructors and operator=, i tend to call it</p>
<pre><code>Obj(Obj const& that):mFoo(that.mFoo) { }
</code></pre>
<p>For operators, i'm going with</p>
<pre><code>Obj operator+(Obj const& lhs, Obj const& rhs) { ... }
</code></pre>
<p>Because those are the <strong>l</strong>eft <strong>h</strong>and <strong>s</strong>ide and the <strong>r</strong>ight <strong>h</strong>and <strong>s</strong>ide of it.</p>
http://stackoverflow.com/questions/450866/naming-convention-for-params-of-ctors-and-setters/451029#4510290Answer by mskfisher for Naming convention for params of ctors and settersmskfisher2009-01-16T16:32:11Z2009-03-20T16:40:04Z<p>For classes:</p>
<pre><code>Obj(int foo) : _foo(foo) {};
</code></pre>
<p>For structs:</p>
<pre><code>obj_t(int foo_) : foo(foo_) {};
</code></pre>
<p>Setter:</p>
<pre><code>Obj.setFoo(int foo) { _foo = foo; }
</code></pre>
<p>I'm with litb on the use of <code>lhs</code> and <code>rhs</code> for operator calls.</p>
<p>I use <code>camelCase</code> for class member functions, and <code>names_with_underscores</code> for struct fields and methods.</p>
http://stackoverflow.com/questions/450866/naming-convention-for-params-of-ctors-and-setters/451320#4513200Answer by Dima for Naming convention for params of ctors and settersDima2009-01-16T17:37:42Z2009-01-16T17:37:42Z<p>I used to follow the Microsoft convention of prefixing member variables with <code>m_</code>, like <code>m_foo</code>. At my current company the convention is a trailing underscore for member variables: <code>foo_</code>. </p>
<p>Generally, if you are working by yourself, then use whatever convention you like. If you are working in a team, use whatever the team agrees upon. Overall consistency in a code base is what is important, not the particular convention.</p>
http://stackoverflow.com/questions/450866/naming-convention-for-params-of-ctors-and-setters/453050#4530501Answer by Martin York for Naming convention for params of ctors and settersMartin York2009-01-17T09:23:56Z2009-01-17T09:23:56Z<p>I avoid (by avoid mean never use) underscore as the first character of any identifier. I know its overkill but worth the effort.</p>
<p>Read this:
<a href="http://stackoverflow.com/questions/228783/what-are-the-rules-about-using-an-underscore-in-a-c-identifier#228797">http://stackoverflow.com/questions/228783/what-are-the-rules-about-using-an-underscore-in-a-c-identifier#228797</a></p>
<p>Though not a rule I limit the use of underscore and prefer camel case to make my variables readable. But that's just a personal preference and I don't mind reading code that uses it.</p>
<p>Additionally I never name parameters the same as my member variables. The compiler will not help you catch the kind of errors this can generate (and this is all about getting the compiler to do the real work so you can do the expressive work the compiler can't do).</p>
<pre><code>int X::setWork(int work)
{
this->work = work; // OK. But more Java like.
work = work; // Compiler won't see that problem.
}
int X::setWork(int newWork)
{
work = newWork; // A bit harder to get wrong.
}
</code></pre>
http://stackoverflow.com/questions/450866/naming-convention-for-params-of-ctors-and-setters/480593#4805930Answer by David Thornley for Naming convention for params of ctors and settersDavid Thornley2009-01-26T17:22:14Z2009-01-26T17:22:14Z<p>Number two has problems as a convention, although in your case it could be harmless. A name that has a leading underscore followed by an uppercase character is reserved for the implementation, and all names with leading underscores are reserved in a global context. If you never have class members beginning with uppercase letters (I don't), you're safe with the convention as shown (using _foo only as a function argument), but I dislike naming conventions that skirt anywhere near the limits.</p>
http://stackoverflow.com/questions/450866/naming-convention-for-params-of-ctors-and-setters/666069#6660691Answer by Brian Neal for Naming convention for params of ctors and settersBrian Neal2009-03-20T13:11:13Z2009-03-20T13:11:13Z<p>I always do this:</p>
<pre><code>Obj(int foo) : foo(foo) {}
</code></pre>
<p>I used to play games with appending funny symbols until one time I got hit by this:</p>
<pre><code>Obj(Bar& b) : b_(b_) {}
</code></pre>
<p>Can you see the mistake? (Yes, b_ is a private member reference variable). It compiled without a warning. Cost me 3 days of debugging (I was a green programmer then).</p>
<p>Now I always use the same name to avoid typos (and subsequent crashes) like that. There is no ambiguity inside the initialization list. This part of the language was designed just for this case, so take advantage of it.</p>
http://stackoverflow.com/questions/450866/naming-convention-for-params-of-ctors-and-setters/1197419#11974190Answer by Hooked for Naming convention for params of ctors and settersHooked2009-07-29T00:07:54Z2009-07-29T00:07:54Z<p>I name the actual members with trailing underscores, so I do this:</p>
<pre><code>Foo(int bar) : bar_(bar) { }
</code></pre>
<p>The reason is so I can use getter functions without anything like getBar() (bar() is better).</p>
http://stackoverflow.com/questions/450866/naming-convention-for-params-of-ctors-and-setters/1197438#11974380Answer by Pavel Minaev for Naming convention for params of ctors and settersPavel Minaev2009-07-29T00:12:54Z2009-07-29T00:12:54Z<p>I do it like this:</p>
<pre><code>obj(int foo) : _foo(foo) { }
int foo() const { return _foo; }
void foo(int value) { _foo = value; }
</code></pre>
<p>The only trick here is to make sure that the letter following the underscore is lowercase. However, I avoid uppercase in identifier names everywhere, as it is inconsistent with conventions used by the standard library (which uses <code>foo_bar_baz</code> for all identifiers). </p>
http://stackoverflow.com/questions/450866/naming-convention-for-params-of-ctors-and-setters/1197551#11975510Answer by kitchen for Naming convention for params of ctors and setterskitchen2009-07-29T00:52:32Z2009-07-29T00:52:32Z<p>I follow the <strong><a href="http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml" rel="nofollow">Google C++ Style Guide</a></strong></p>
<blockquote>
<p>Variable names are all lowercase, with underscores between words. Class member variables have trailing underscores. For instance: my_exciting_local_variable, my_exciting_member_variable_.</p>
</blockquote>