active questions tagged coding-style - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T15:05:23Zhttp://stackoverflow.com/feeds/tag/coding-stylehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1825065/is-it-ok-for-an-abstract-base-class-have-non-abstract-methods1Is it OK for an abstract base class have non-abstract methods?andreas buykx2009-12-01T09:37:54Z2009-12-01T12:45:39Z
<p>An abstract base class (interface class) usually has all its member functions abstract. However, I have several cases where member functions consisting of calls to the abstract methods of the interface are used. I can implement them in a derived-but-still-abstract class, or I can implemented the methods as non-abstract, non-virtual methods of the interface class.</p>
<p>Are there any problems design-wise with implementing the methods in the interface class? Is it bad style, and if so, why?</p>
<p>Does the same hold for static methods?</p>
<p>For example</p>
<pre><code>class IFoo
{
public:
virtual ~IFoo();
virtual double calcThis( InputType p ) const = 0;
virtual double calcThat( InputType p ) const = 0;
double calcFraction( InputType p ) { return calcThis( p ) / calcThat( p ); }
static BarType bar( InputType p );
};
class MyFoo : public IFoo
{
public:
// implements IFoo
virtual double calcThis( InputType p ) const;
// implements IFoo
virtual double calcThat( InputType p ) const;
};
</code></pre>
<p>versus</p>
<pre><code>class IFoo
{
public:
virtual ~IFoo();
virtual double calcThis( InputType p ) const = 0;
virtual double calcThat( InputType p ) const = 0;
};
class FooBase : public IFoo
{
public:
virtual ~FooBase();
double calcFraction( InputType p ) { return calcThis( p ) / calcThat( p ); }
static BarType bar( InputType p );
};
class MyFoo : public FooBase
{
public:
// implements IFoo
virtual double calcThis( InputType p ) const;
// implements IFoo
virtual double calcThat( InputType p ) const;
};
</code></pre>
http://stackoverflow.com/questions/16432/c-string-output-format-or-concat12C# String output: format or concat?Philippe2008-08-19T15:46:53Z2009-11-30T21:11:53Z
<p>Let's say that you want to output or concat strings, what style do you prefer:</p>
<pre><code> var p = new { FirstName = "Bill", LastName = "Gates" };
Console.WriteLine("{0} {1}", p.FirstName, p.LastName);
Console.WriteLine(p.FirstName + " " + p.LastName);
</code></pre>
<p>Do you rather use format or do you simply concat strings? What is your favorite? Is one of these hurting your eyes?</p>
<p>Do you have any rational arguments to use one and not the other?</p>
<p>I'd go for the second one.</p>
http://stackoverflow.com/questions/948033/jsp-custom-tags-is-it-possible-to-have-a-more-than-start-close-tags0JSP Custom Tags: Is it possible to have a more than start / close tags?TM2009-06-04T00:41:13Z2009-11-30T20:25:14Z
<p>After using the Django template language, I really miss being able to do things like this:</p>
<pre><code>{% if condition %}
<!-- snip -->
{% else %}
<!-- snip -->
{% endif %}
</code></pre>
<p>When I am using JSP, I am stuck doing something like this:</p>
<pre><code><logic:equal name="something" value="example">
<!-- snip -->
</logic:equal>
<logic:notEqual name="something" value="example">
<!-- snip -->
</logic:notEqual>
</code></pre>
<p>or:</p>
<pre><code><% if (condition) { %>
<!-- snip -->
<% } else { %>
<!-- snip -->
<% } %>
</code></pre>
<p>Is it possible to write a custom tag that supports <code>else</code> and <code>else if</code>, rather than simply having a pair of tags for each check?</p>
<p>If it's not possible, which is the "preferred" style? Scriptlets or multiple tag pairs? At my organization, most people seem to frown upon scriptlets, but I haven't really heard a good reason why simple conditional statements like the ones I've listed are so bad.</p>
http://stackoverflow.com/questions/1820353/is-there-a-well-established-naming-convention-for-php-namespaces1Is there a well-established naming convention for PHP namespaces?Ignas R2009-11-30T15:05:05Z2009-11-30T19:00:50Z
<p>So far, I've seen many different naming conventions used for PHP namespaces. Some people use <code>PascalCase\Just\Like\For\Classes</code>, some use <code>underscored\lower_case\names</code>, some even use the Java convention for package names: <code>com\domain\project\package</code>.<br>
The question is very simple -- can any of these (or other) conventions be called well-established? Why? Are any of them recommended by authorities like Zend or the developers of well-known PHP frameworks?</p>
http://stackoverflow.com/questions/1820451/ruby-style-how-to-check-whether-a-nested-hash-element-exists2Ruby Style: How to check whether a nested hash element existsTodd R2009-11-30T15:22:34Z2009-11-30T16:47:14Z
<p>Consider a "person" stored in a hash. Two examples are:</p>
<pre><code>fred = {:person => {:name => "Fred", :spouse => "Wilma", :children => {:child => {:name => "Pebbles"}}}}
slate = {:person => {:name => "Mr. Slate", :spouse => "Mrs. Slate"}}
</code></pre>
<p>If the "person" doesn't have any children, the "chilren" element is not present. So, for Mr. Slate, we can check whether he has parents:</p>
<pre><code>slate_has_children = !slate[:person][:children].nil?
</code></pre>
<p>So, what if we don't know that "slate" is a "person" hash? Consider:</p>
<pre><code>dino = {:pet => {:name => "Dino"}}
</code></pre>
<p>We can't easily check for children any longer:</p>
<pre><code>dino_has_children = !dino[:person][:children].nil?
NoMethodError: undefined method `[]' for nil:NilClass
</code></pre>
<p>So, how would you check the structure of a hash, especially if it is nested deeply (even deeper than the examples provided here)? Maybe a better question is: What's the "Ruby way" to do this?</p>
http://stackoverflow.com/questions/1798118/what-do-you-do-to-write-better-code10What do you do to write better code?streetparade2009-11-25T16:23:40Z2009-11-30T12:27:38Z
<p>What do you do to write better code?
Concentrate more? Read more books?</p>
<p>My method is reading, asking.
What is your method of writing better code?</p>
http://stackoverflow.com/questions/1815903/const-correctness-in-c-operator-overloading-returns2Const correctness in C++ operator overloading returnsanjruu2009-11-29T16:05:26Z2009-11-29T23:54:26Z
<p>Hi! I'm a little confused as to why I've been told to return const foo from a binary operator in c++ instead of just foo.</p>
<p>I've been reading Bruce Eckel's "Thinking in C++", and in the chapter on operator overloading, he says that "by making the return value [of an over-loading binary operator] const, you state that only a const member function can be called for that return value. This is const-correct, because it prevents you from storing potentially valuable information in an object that will be most likely be lost".</p>
<p>However, if I have a plus operator that returns const, and a prefix increment operator, this code is invalid:</p>
<pre><code>class Integer{
int i;
public:
Integer(int ii): i(ii){ }
Integer(Integer&);
const Integer operator+();
Integer operator++();
};
int main(){
Integer a(0);
Integer b(1);
Integer c( ++(a + b));
}
</code></pre>
<p>To allow this sort of assignment, wouldn't it make sense to have the + operator return a non-const value? This could be done by adding const_casts, but that gets pretty bulky, doesn't it?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1810991/recommendations-for-naming-c-classes-methods-intended-to-replace-existing-apis3Recommendations for naming C# classes/methods intended to replace existing APIs.Blackened2009-11-27T23:29:26Z2009-11-28T00:43:19Z
<p>Long explanation aside, I have a situation where I need to basically re-implement a .NET framework class in order to extend the behavior in a manner that is not compatible with an inheritance or composition/delegation strategy. The question is not a matter of whether the course of action I am to take is what you would do, or recommend, it is instead a question of naming/coding-style.</p>
<p>Is there a paradigm for naming classes and methods that have the same functionality as an existing class or method ala the convention of ClassEx/MethodEx that exists in C++?</p>
<p>[edit]
I understand that choosing good names for this is important... I haven't written a line of code yet, and am instead taking the time to think through the ramifications of what I am about to undertake, and that includes searching for a clear, descriptive, name while trying to be concise. The issue is that the name I have in mind is not terribly concise.
[/edit]</p>
http://stackoverflow.com/questions/1807575/multithreaded-java-server-allowing-one-thread-to-access-another-one0Multithreaded Java server: allowing one thread to access another onelukem002009-11-27T09:07:40Z2009-11-27T14:55:30Z
<p>Hopefully the code itself explains the issue here:</p>
<pre><code>class Server {
public void main() {
// ...
ServerSocket serverSocket = new ServerSocket(PORT);
while (true) {
Socket socket = serverSocket.accept();
Thread thread = new Thread(new Session(socket));
thread.start();
}
// ..
}
public static synchronized Session findByUser(String user) {
for (int i = 0; i < sessions.size(); i++) {
Session session = sessions.get(i);
if (session.getUserID().equals(user)) {
return session;
}
}
return null;
}
}
class Session {
public Session(Socket socket) {
attach(socket);
}
public void attach(Socket socket) {
// get socket's input and output streams
// start another thread to handle messaging (if not already started)
}
public void run() {
// ...
// user logs in and if he's got another session opened, attach to it
Session session = Server.findByUser(userId);
if (session != null) {
// close input and output streams
// ...
session.attach(socket);
return;
}
// ..
}
}
</code></pre>
<p>My question here is: <strong>Is it safe to publish session reference in Server.findByUser method, doesn't it violate OOP style, etc?</strong>
Or should I reference sessions through some immutable id and encapsulate the whole thing? Anything else you would change here?</p>
<pre><code>String sessionId = Server.findByUser(userId);
if (sessionId != null && sessionId.length() > 0) {
// close input and output streams
// ...
Server.attach(sessionId, socket);
return;
}
</code></pre>
<p><strong>Thomas:</strong></p>
<p>Thanks for your answer.</p>
<p>I agree, in a <em>real world</em>, it would be a good idea to use dependency injection when creating a new instance of <code>Session</code>, but then probably also with an interface, right (code below)? Even though I probably should have unit tests for that, let's consider I don't. Then I need exactly one instance of Server. <strong>Would it then be a huge OO crime to use static methods instead of a singletone?</strong></p>
<pre><code>interface Server {
Session findByUser(String user);
}
class ServerImpl implements Server {
public Session findByUser(String user) { }
}
class Session {
public Session(Server server, Socket socket) { }
}
</code></pre>
<p>Good point on the <code>attach(...)</code> method - I've never even considered subclassing <code>Session</code> class, that's probably why I haven't thought how risy it might be to call public method in the constructor. But then I actually need some public method to attach session to a different socket, so maybe a pair of methods?</p>
<pre><code>class Session {
public Session(Socket socket) {
attach_socket(socket);
}
public void attach(Socket socket) {
attach_socket(socket);
}
private void attach_socket(Socket socket) {
// ...
}
}
</code></pre>
<p>It's true that allowing clients of Session to call <code>attach(...)</code> doesn't seem right. That's probably one of those serious mehods only the Server should have access to. How do I do it without C++'s friendship relationship though? Somehow inner classes came to my mind, but I haven't given it much thought, so it maybe a completely wrong path.</p>
<p>Everytime I receive a new connection I spawn a new thread (and create a new Session instance associated with it) to handle transmission. That way while the user sends in a login command, Server is ready to accept new connections. Once the user's identity is verified, I check if by any chance he's not already logged in (has another ongoing session). If he is then I <strong>detach the onging session from it's socket, close that socket, attach the ongoing session to current socket and close current session</strong>. Hope this is more clear explanation of what actually happens? Maybe the use of a word <em>session</em> is a bit misfortunate here. What I really have is 4 different objects created for each connection (and 3 threads): socket handler, message sender, message receiver and a session (if it's a good solution that's a different question...). I just tried simplyfing the source code to focus on the question.</p>
<p>I totally agree it makes no sense to iterate over session list when you can use a map. But I'm afraid that's probably one of the smaller issues (believe me) the code I'm working on suffers from. I should've mentioned it's actually some legacy system that, no surprise, quite recently has been discoved to have some concurrency and performance issues. My task is to fix it... Not an easy task when you pretty much got only theoretical knowledge on multithreading or when you merely used it to display a progress bar.</p>
<p>If after this, rather lengthy, clarification you have some more insight on the architecture, I'd be more than willing to listen.</p>
http://stackoverflow.com/questions/1800003/which-is-better-using-a-nullable-or-a-boolean-returnout-parameter3which is better, using a nullable or a boolean return+out parameterOren Mazor2009-11-25T21:16:12Z2009-11-26T18:42:36Z
<p>Lets say I have a function that needs to return some integer value. but it can also fail, and I need to know when it does.</p>
<p>Which is the better way?</p>
<pre><code>public int? DoSomethingWonderful()
</code></pre>
<p>or</p>
<pre><code>public bool DoSomethingWonderful(out int parameter)
</code></pre>
<p>this is probably more of a style question, but I'm still curious which option people would take.</p>
<p>Edit: clarification, this code talks to a black box (lets call it a cloud. no, a black box. no, wait. cloud. yes). I dont care <em>why</em> it failed. I would just need to know if I have a valid value or not.</p>
http://stackoverflow.com/questions/1792932/when-should-i-use-scalas-array-instead-of-one-of-the-other-collections3When should I use Scala's Array instead of one of the other collections?pr10012009-11-24T21:09:09Z2009-11-24T23:28:01Z
<p>This is more a question of style and preference but here goes: when should I use scala.Array? I use List all the time and occasionally run into Seq, Map and the like, but I've never used nor seen Array in the wild. Is it just there for Java compatibility? Am I missing a common use-case?</p>
http://stackoverflow.com/questions/1791630/appending-to-nsstring-immutable1Appending to NSString (immutable)?fuzzygoat2009-11-24T17:27:43Z2009-11-24T23:21:50Z
<p>Just trying a few things out and noticed that this works, it does compile, but I just wanted to check if it would be considered good practice or something to be avoided?</p>
<pre><code>NSString *fileName = @"image";
fileName = [fileName stringByAppendingString:@".png"];
NSLog(@"TEST : %@", fileName);
OUTPUT: TEST : image.png
</code></pre>
<p>Might be better written as:</p>
<pre><code>NSString *fileName = @"image";
NSString *tempName;
tempName = [fileName stringByAppendingString:@".png"];
NSLog(@"TEST : %@", tempName);
</code></pre>
<p>just curious.</p>
http://stackoverflow.com/questions/1467058/space-between-line-comment-characters-and-start-of-actual-comment1Space between line-comment character(s) and start of actual commentMark Rushakoff2009-09-23T16:14:06Z2009-11-24T19:49:57Z
<p>I realize that this rule might differ from one company's coding standards to another, but in general, which is preferred?</p>
<ol>
<li>With a space after the line-comment:</li>
</ol>
<p><code></p>
<pre><code>int foo = Bar(quux + 1); // compensate for quux being off by 1
foo = Bar(quux + 1) # compensate for quux being off by 1
</code></pre>
<p></code>
2. No space after the line comment:</p>
<p><code></p>
<pre><code>int foo = Bar(quux + 1); //compensate for quux being off by 1
foo = Bar(quux + 1) #compensate for quux being off by 1
</code></pre>
<p></code></p>
<p>I haven't been able to find <em>anything</em> online regarding this aspect of coding style. My guess is that including a space is the preferred style for all languages, but I'd like some "hard evidence" to confirm or deny this.<br />
<hr/>
It sounds so far like everyone has <strong>anecdotal</strong> evidence that using a space is preferred. Can anyone point me in the direction of some official or otherwise published <strong>coding standards</strong> that directly address the issue of comment formatting and whether a space should be used?</p>
http://stackoverflow.com/questions/1772536/strcat-vs-sprintf0strcat() vs sprintf()lxe2009-11-20T18:53:11Z2009-11-23T20:23:05Z
<p>What would be faster? This:</p>
<pre><code>sprintf(&str[strlen(str)], "Something");
</code></pre>
<p>or</p>
<pre><code>strcat(str, "Something");
</code></pre>
<p>Is there any performance difference? </p>
http://stackoverflow.com/questions/1784481/microsoft-internal-coding-guidelines-dont-use-tabs3Microsoft Internal Coding guidelines: don't use tabs.WebDevHobo2009-11-23T16:56:26Z2009-11-23T18:35:40Z
<p>Source: <a href="http://blogs.msdn.com/brada/articles/361363.aspx" rel="nofollow">http://blogs.msdn.com/brada/articles/361363.aspx</a></p>
<blockquote>
<p>Tab characters (\0x09) should not be
used in code. All indentation should
be done with 4 space characters.</p>
</blockquote>
<p>Can someone give me an argument as to why this would matter? Shouldn't compilers just ignore this tabs? I always use tabs, just because it's easier and indented code looks nicer.</p>
<p><strong><em>EDIT:</em></strong>
Right, I just thought of: Python. Doesn't the Python compiler use indentation? Do tabs/spaces matter in Python?</p>
http://stackoverflow.com/questions/1776291/function-names-in-c-capitalize-or-not1Function names in C++: Capitalize or not?unknown (google)2009-11-21T18:24:27Z2009-11-22T02:54:33Z
<p>What's the convention for naming functions in C++?</p>
<p>I come from the java environment so I usually name something like:</p>
<pre><code>myFunction(...){
}
</code></pre>
<p>I've seen mixed code in C++, </p>
<pre><code>myFunction(....)
MyFunction(....)
Myfunction(....)
</code></pre>
<p>what's the correct way?</p>
<p>Also, is it the same for a class function and for a function that's not a class function?</p>
http://stackoverflow.com/questions/694102/declaring-multiple-variables-in-javascript2Declaring Multiple Variables in JavaScriptSteve Harrison2009-03-29T04:37:25Z2009-11-20T23:23:37Z
<p>Hello,</p>
<p>In JavaScript, it is possible to declare multiple variables like this:</p>
<pre><code>var variable1 = "Hello World!";
var variable2 = "Testing...";
var variable3 = 42;
</code></pre>
<p>...or like this:</p>
<pre><code>var variable1 = "Hello World!",
variable2 = "Testing...",
variable3 = 42;
</code></pre>
<p>Is one method better/faster than the other?</p>
<p>Thanks,</p>
<p>Steve</p>
http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom3Infinite loops - top or bottom?CesarB2008-10-22T01:16:19Z2009-11-20T18:16:06Z
<p>In the spirit of questions like <a href="http://stackoverflow.com/questions/224059/do-your-loops-test-at-the-top-or-bottom">Do your loops test at the top or bottom?</a>:</p>
<p>Which style do you use for an <em>infinite</em> loop, and why?</p>
<ul>
<li>while (true) { }</li>
<li>do { } while (true);</li>
<li>for (;;) { }</li>
<li>label: ... goto label;</li>
</ul>
http://stackoverflow.com/questions/1769089/defining-const-pointer-to-a-const-string0Defining const pointer to a const stringidimba2009-11-20T08:42:18Z2009-11-20T15:18:16Z
<p>Readed bog of Ulrich Drepper and come across 2 entries that looks like conficting.</p>
<p>In the <strong><a href="http://udrepper.livejournal.com/13851.html" rel="nofollow">first one</a></strong> (string in global space) Ulrich states that the string should be defines as:</p>
<pre><code>const char _pcre_ucp_names[] = "blabla";
</code></pre>
<p>while already in <strong><a href="http://udrepper.livejournal.com/15119.html" rel="nofollow">second one</a></strong> (string in function) he argues it should be declared as:</p>
<pre><code>static const char _pcre_ucp_names[] = "blabla";
</code></pre>
<p>Can you explain what is the better name to declate a string?</p>
<p><strong>UDP:</strong></p>
<p>First of all I removed C++ tag - this question is valid for C as well for C++. So I don't think answers which explain what static means in class/funtion/file scope is relevant.</p>
<p>Read the articles before answering. The articles deal about memory usage - where the actual data is stored (in .rodata or in .data section), do the string should be relocated (if we're talking about unix/linux shared objects), is it possible to change the string or not. </p>
<p><strong>UDP2</strong>
In <strong>first one</strong> it's said that for global variable following form:</p>
<pre><code>(1) const char *a = "...";
</code></pre>
<p>is less good than</p>
<pre><code>(2) const char a[] = "..."
</code></pre>
<p>Why? I always thought that (1) is better, since (2) actually replicate the string we assign it, while (1) only points to string we assign.</p>
http://stackoverflow.com/questions/143429/whats-the-least-useful-comment-youve-ever-seen9What's the least useful comment you've ever seen?Adam Bellaire2008-09-27T11:11:00Z2009-11-20T02:26:35Z
<p>We all know that commenting our code is an important part of coding style for making our code understandable to the next person who comes along, or even ourselves in 6 months or so.</p>
<p>However, sometimes a comment just doesn't cut the mustard. I'm not talking about obvious jokes or vented frustraton, I'm talking about comments that appear to be making an attempt at explanation, but do it so poorly they might as well not be there. Comments that are <strong>too short</strong>, are <strong>too cryptic</strong>, or are <strong>just plain wrong</strong>. </p>
<p>As a cautonary tale, could you share something you've seen that was really just <strong>that bad</strong>, and if it's not obvious, show the code it was referring to and point out what's wrong with it? What <strong>should</strong> have gone in there instead?</p>
<p>See also: </p>
<ul>
<li><a href="http://stackoverflow.com/questions/163600/when-not-to-comment-code">When NOT to comment your code</a></li>
<li><a href="http://stackoverflow.com/questions/121945/how-do-you-like-your-comments-best-practices">How do you like your comments? (Best Practices)</a></li>
<li><a href="http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered">What is the best comment in source code you have ever encountered?</a></li>
</ul>
http://stackoverflow.com/questions/20564/what-constitutes-beautiful-code16What constitutes beautiful code?Tom2008-08-21T17:13:40Z2009-11-19T18:01:28Z
<p>For anyone that is passionate about software development, I'm of the opinion that you should always strive to write beautiful code; however, <strong>is there a clear definition of what beautiful code really is?</strong></p>
<p>On one hand, I see elegant code being something that's easy to read while simultaneously solving the problem at hand in the most efficient way possible. It seems like readable code often comes at the expense of, for example, creating several new variables in order to represent the data with which you're working. Depending on your platform (or depending on how picky you are), creating these variables could be considered to be a performance hit. </p>
<p>On the other hand, this brings up another perspective that I've often seen that defines beautiful code as code that succinctly and efficiently solves the given problem. It can be argued, though, that succinct code may come at the sake of readability and thus ultimately detracts from the attractiveness of the code.</p>
<p>I personally want to be able to write expressive, effective, and elegant code, but I often find myself debating if adding a couple of more variables to improve the readability of the code three months later really does improve (or pollute) the code.</p>
http://stackoverflow.com/questions/1756324/proper-naming-query0Proper naming querystereofrog2009-11-18T14:20:53Z2009-11-19T15:54:54Z
<p>Hi</p>
<p>i have naming problems with two of my functions</p>
<ul>
<li><p>i've got a function <code>is_void</code> that returns true if the argument is "empty" (in some sense). How would you call an opposite function? <code>isnt_void</code>? <code>is_set</code>? <code>is_not_void</code>?</p></li>
<li><p>i have a pair of functions, the first one installs a handler to catch errors in the subsequent code and the second removes this handler. <code>install_error_handler/remove_error_handler</code> looks too long and ugly, i'd prefer a pair of short verbs (like watch/unwatch).</p></li>
</ul>
<p>Any ideas are greatly appreciated.</p>
<p>Thanks for the answers so far</p>
<p><strong>UPDATED:</strong> I need a function for "isn't void" because it's going to be used like <code>someArray.map(is_not_void)</code></p>
<p>the second one cannot be simply "register" or "install", because it's used without arguments.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them244What are Code Smells? What is the best way to correct them?Rob Cooper2008-09-22T11:34:19Z2009-11-19T04:15:56Z
<p>OK, so I know <em>what</em> a code smell <em>is</em>, and the <a href="http://en.wikipedia.org/wiki/Code%5Fsmell" rel="nofollow">Wikipedia Article</a> is pretty clear in its definition:</p>
<blockquote>
<p>In computer programming, code smell is
any symptom in the source code of a
computer program that indicates
something may be wrong. It generally
indicates that the code should be
refactored or the overall design
should be reexamined. The term appears
to have been coined by Kent Beck on
WardsWiki. Usage of the term increased
after it was featured in Refactoring.
Improving the Design of Existing Code.</p>
</blockquote>
<p>I know it also provides a list of common code smells. But I thought it would be great if we could get clear list of not only <strong>what code smells there are</strong>, but also <strong>how to correct them.</strong></p>
<h2>Some Rules</h2>
<p>Now, this is going to be a little subjective in that there are differences to languages, programming style etc. So lets lay down some ground rules:
<hr /></p>
<h2>** ONE SMELL PER ANSWER PLEASE! & ADVISE ON HOW TO CORRECT! **</h2>
<ul>
<li>See <a href="http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them#114386">this answer</a> for a good display of what this thread should be!</li>
</ul>
<h3>DO NOT downmod if a smell doesn't apply to your language or development methodology</h3>
<p>We are all different.</p>
<h3>DO NOT just quickly smash in as many as you can think of</h3>
<p>Think about the smells you want to list and get a <strong>good</strong> idea down on how to work around.</p>
<h3>DO downmod answers that just look rushed</h3>
<p>For example "<em>dupe code - remove dupe code</em>". Let's makes it <strong>useful</strong> (e.g. Duplicate Code - Refactor into separate methods or even classes, use these links for help on these common.. etc. etc.).</p>
<h3>DO upmod answers that you would add yourself</h3>
<p>If you wish to expand, then answer with your thoughts linking to the original answer (if it's detailed) or comment if its a minor point.</p>
<h3>DO format your answers!</h3>
<p>Help others to be able to read it, use code snippets, headings and markup to make key points stand out!</p>
http://stackoverflow.com/questions/1691799/instance-variable-naming-conventions-in-cocoa3Instance variable naming conventions in Cocoamorticae2009-11-07T02:45:39Z2009-11-18T22:17:37Z
<p>This question is about variable naming style in objective c and cocoa. I just want to stress that I'm not looking for a "right" answer, just good ideas.</p>
<p>I've read through Apple and Google's objective c style guides and I'm not really happy with either of them. Apple's guide doesn't have any real style recommendations regarding instance variables vs local variables. In fact, the Cocoa library itself seems perfectly happy having function parameters of the exact same name as instance variables. That makes me cringe personally.</p>
<p>Googles guide specifies that instance variables should be indicated with a trailing underscore. Alright, all well and good, but it suggests that we then synthesize every public property with @synthesize property = property_. I don't know about anyone else, but I'll be damned if I'm going to do that for every instance variable in my project. I think it's a wasteful and confusing solution.</p>
<p>I'm tempted to go with the myX (eg "myInstanceVariable") naming style for object properties, but I have rarely seen that style in objective c.</p>
<p>So yeah, what do you use? Any style conventions out there I don't know about that you've found useful? Do you think function parameters with the same name as instance variables is dangerous, especially in multiple developer environments? Thanks guys and gals!</p>
<p>NOTE - As many people have pointed out, my terminology was off in the OP. Apologies if the original wording hurt the clarity, but I think the point was still clear.</p>
http://stackoverflow.com/questions/1758469/good-introduction-to-generics1Good introduction to genericsakosch2009-11-18T19:32:25Z2009-11-18T19:44:11Z
<p>Being compelled by the advantages I'm looking for a way to integrate generic programming into my current programming style. I would like to use generics in C# but can't find any good introductory material with some everyday examples of use. If you have experience with generics: what resources did you find most useful learning them? (books, articles, etc...)</p>
http://stackoverflow.com/questions/1757240/how-to-document-the-main-method0How to document the Main method?Mike Hofer2009-11-18T16:27:13Z2009-11-18T16:33:00Z
<p>Okay, so I've got a .NET console application with it's Main method, contained in a Program class. You know, the usual:</p>
<pre><code>class Program
{
static void Main(string[] args)
{
// Do something spectactular
}
}
</code></pre>
<p>Since I've started using StyleCop and FxCop so rigorously, I've become kind of nit-picky about making sure everything is properly documented. </p>
<p>Then it hit me. I have <em>absolutely</em> no idea how to properly document Program and Program.Main.</p>
<p>I suppose, in the long run, that you could go with the following:</p>
<pre><code>/// <summary>
/// Encapsulates the application's main entry point.
/// </summary>
class Program
{
/// <summary>
/// The application's main entry point.
/// </summary>
static void Main(string[] args)
{
// Do something spectactular
}
}
</code></pre>
<p>But that seems woefully inadequate (despite the fact that my Main routines always delegate to other classes to do the work).</p>
<p>How do you folks document these things? Is there a recommendation or standard? </p>
http://stackoverflow.com/questions/1755287/is-it-bad-practice-to-use-temporary-variables-to-avoid-typing7Is it bad practice to use temporary variables to avoid typing?DR2009-11-18T11:11:21Z2009-11-18T12:59:40Z
<p>I sometimes use temporary variables to shorten the identifiers:</p>
<pre><code>private function doSomething() {
$db = $this->currentDatabase;
$db->callMethod1();
$db->callMethod2();
$db->callMethod3();
$db->...
}
</code></pre>
<p>Although this is a PHP example, I'm asking in general: </p>
<p><strong>Is this bad practice?</strong> Are there any drawbacks?</p>
http://stackoverflow.com/questions/1752815/why-isnt-dry-considered-a-good-thing-for-type-declarations3Why isn't DRY considered a good thing for type declarations?dsimcha2009-11-18T00:20:37Z2009-11-18T05:01:08Z
<p>It seems like people who would never dare cut and paste code have no problem specifying the type of something over and over and over. Why isn't it emphasized as a good practice that type information should be declared once and only once so as to cause as little ripple effect as possible throughout the source code if the type of something is modified? For example, using pseudocode that borrows from C# and D:</p>
<pre><code>MyClass<MyGenericArg> foo = new MyClass<MyGenericArg>(ctorArg);
void fun(MyClass<MyGenericArg> arg) {
gun(arg);
}
void gun(MyClass<MyGenericArg> arg) {
// do stuff.
}
</code></pre>
<p>Vs.</p>
<pre><code>var foo = new MyClass<MyGenericArg>(ctorArg);
void fun(T)(T arg) {
gun(arg);
}
void gun(T)(T arg) {
// do stuff.
}
</code></pre>
<p>It seems like the second one is a lot less brittle if you change the name of MyClass, or change the type of MyGenericArg, or otherwise decide to change the type of foo.</p>
http://stackoverflow.com/questions/213907/c-stdendl-vs-n16C++: "std::endl" vs "\n"Head Geek2008-10-17T21:25:17Z2009-11-17T22:29:29Z
<p>Many C++ books contain example code like this...</p>
<pre><code>std::cout << "Test line" << std::endl;
</code></pre>
<p>...so I've always done that too. But I've seen a lot of code from working developers like this instead:</p>
<pre><code>std::cout << "Test line\n";
</code></pre>
<p>Is there a technical reason to prefer one over the other, or is it just a matter of coding style?</p>
http://stackoverflow.com/questions/699300/if-you-break-long-code-lines-how-do-you-indent-the-stuff-on-the-next-line6If you break long code lines, how do you indent the stuff on the next line?Mnementh2009-03-30T22:32:39Z2009-11-17T15:12:01Z
<p>Sometimes you have to write in your source long lines, that are better to break. How do you indent the stuff ceated by this.</p>
<p>You can indent it the same:</p>
<pre><code>very long
statement;
other statement;
</code></pre>
<p>That makes it harder to differentiate from the following code, as shown in the example. On the other hand you could indent it one level:</p>
<pre><code>very long
statement;
other statement;
</code></pre>
<p>That makes it easier, but it can happen, that the long line is the start of a nested block, that you want to indent, like this:</p>
<pre><code>if ((long test 1) &&
(long test 2) &&
(long test 3)) {
code executed if true;
}
</code></pre>
<p>In this case again it's hard to read. The third possibility I can think of, is to not break long lines at all, modern editors can handle it and create soft linebreaks. But with another editor you have to scroll sideways and you cannot influence the position, the editor breaks your long line.</p>
<p>What possibility do you prefer? Do you have other ideas to solve this? Can you support your preference with a good justification?</p>