Naming convention for params of ctors and setters - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T23:20:18Z http://stackoverflow.com/feeds/question/450866 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/450866/naming-convention-for-params-of-ctors-and-setters 4 Naming convention for params of ctors and setters Iraimbilanja 2009-01-16T15:54:35Z 2009-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-&gt;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#450877 0 Answer by Yann Semet for Naming convention for params of ctors and setters Yann Semet 2009-01-16T15:58:34Z 2009-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#450887 8 Answer by vava for Naming convention for params of ctors and setters vava 2009-01-16T16:00:21Z 2009-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#450902 1 Answer by Arcane for Naming convention for params of ctors and setters Arcane 2009-01-16T16:02:51Z 2009-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#451015 6 Answer by Johannes Schaub - litb for Naming convention for params of ctors and setters Johannes Schaub - litb 2009-01-16T16:29:44Z 2009-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&amp; that):mFoo(that.mFoo) { } </code></pre> <p>For operators, i'm going with</p> <pre><code>Obj operator+(Obj const&amp; lhs, Obj const&amp; 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#451029 0 Answer by mskfisher for Naming convention for params of ctors and setters mskfisher 2009-01-16T16:32:11Z 2009-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#451320 0 Answer by Dima for Naming convention for params of ctors and setters Dima 2009-01-16T17:37:42Z 2009-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#453050 1 Answer by Martin York for Naming convention for params of ctors and setters Martin York 2009-01-17T09:23:56Z 2009-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-&gt;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#480593 0 Answer by David Thornley for Naming convention for params of ctors and setters David Thornley 2009-01-26T17:22:14Z 2009-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#666069 1 Answer by Brian Neal for Naming convention for params of ctors and setters Brian Neal 2009-03-20T13:11:13Z 2009-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&amp; 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#1197419 0 Answer by Hooked for Naming convention for params of ctors and setters Hooked 2009-07-29T00:07:54Z 2009-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#1197438 0 Answer by Pavel Minaev for Naming convention for params of ctors and setters Pavel Minaev 2009-07-29T00:12:54Z 2009-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#1197551 0 Answer by kitchen for Naming convention for params of ctors and setters kitchen 2009-07-29T00:52:32Z 2009-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>