0
votes
3answers
88 views
Calling a specific constructor in c# with null
I have a class with several constructors and I want to call the "main" one from another - but using null.
Using just this(null) results in a compile time error, so I cast null to …
2
votes
3answers
131 views
C# overloading operator== versus Equals()
I'm working on a C# project for which, until now, I've used immutable objects and factories to ensure that objects of type Foo can always be compared for equality with ==. Foo obje …
243
votes
152answers
20k views
What are Code Smells? What is the best way to correct them?
OK, so I know what a code smell is, and the Wikipedia Article is pretty clear in its definition:
In computer programming, code smell is
any symptom in the source code of a
…
1
vote
6answers
192 views
MVC in PHP without the “magic”
Let's say I have a PHP Model-View-Controller framework that maps an address like http://site.com/admin/posts/edit/5 to an action that looks like
Posts_Controller::editAction($id)
…
0
votes
3answers
94 views
Refactoring Two Levels of Switch Statements
I've inherited a code base that makes heavy use of switch statements (C#, FWIW) to drive some logic. It's a multi-tenant web app where one set of switch statements pertains to how …
2
votes
7answers
134 views
Is it possible to avoid using type checking in this example?
Sorry for the poor title, can't think of a succinct way of putting this..
I'm thinking of having a list of objects that will all be of a specific interface. Each of these objects …
24
votes
23answers
1k views
“it works-don’t touch it” and continues engineering
Sometimes I work with bad smelling code. Yes, there's bad code out there :) I'm not talking about design problem but about much more simple things like:
messy indentation
non con …
2
votes
3answers
65 views
Refactoring Studies
Hi,
Our development shop is conducting a seminar in a local college to encourage clean code (the standards are from the eponymous book) and best practices. Now we need references …
0
votes
3answers
68 views
Extension ‘Class’: Good use of extension methods and increase code readability… or bad smell?
So I've been dealing with several APIs recently provided by different software vendors for their products. Sometimes things are lacking, sometimes I just want to make the code more …
2
votes
4answers
129 views
linux threads and fopen() fclose() fgets()
I'm looking at some legacy Linux code which uses pthreads.
In one thread a file is read via fgets(). The FILE variable is a global variable shared across all threads. (Hey, I did …
0
votes
2answers
84 views
Code smell: Passing Javascript variable names and values from server script (ASP.NET)
What are some good ways to deal with this messy and unnecessary and not-really-dynamic generation of JavaScript:
var <%# JavascriptId %> = new BusinessChart(
'<%# Jav …
2
votes
4answers
113 views
Could someone explaining the reasoning behind some of these PMD rules?
DataflowAnomalyAnalysis: Found
'DD'-anomaly for variable 'variable'
(lines 'n1'-'n2').
DataflowAnomalyAnalysis: Found
'DU'-anomaly for variable 'variable'
(lines 'n …
19
votes
20answers
1k views
How do I convince my coworker that methods with 26 parameters are bad practice?
Title says it all... we've debated this without any progress.
Closest related questions I could find:
How many parameters are too many?
Worst Java practice found in your experie …
14
votes
19answers
904 views
boolean parameters — do they smell?
I just found a bug caused by a boolean parameter... the caller thought it was controlling one thing but it was really controlling something else. So do boolean parameters smell in …
1
vote
10answers
154 views
Is there a limit on the number of exceptions I should throw from a method?
this is my function declaration
public init(){
try{
initApplication();
}catch(A1Exception){
}catch(A2Exception){
...
}catch(A5Exception){
…
