4
votes
8answers
332 views
Why use short-circuit code?
Related Questions: Benefits of using short-circuit evaluation, Why would a language NOT use Short-circuit evaluation?, Can someone explain this line of code please? (Logic & As …
128
votes
39answers
8k views
Should a function have only one return statement ?
Are there good reasons why it's better practice to have only one return statement in a function ?
Or is it OK to return from a function as soon as it is logically correct to do s …
1
vote
10answers
195 views
Hyphens or underscores in CSS and HTML identifiers?
As both hyphen (-) and underscore (_) are valid characters in CSS and HTML identifiers, what are the advantages and disadvantages using one or the other? I prefer writing CSS class …
0
votes
2answers
63 views
Naming “class” and “id” HTML attributes - dashes vs. underlines
<div id="example-value"> or <div id="example_value">?
This site and Twitter use the first style. Facebook and Vimeo - the second.
Which one do you use and why?
7
votes
10answers
722 views
How to deal with seniors’ bad coding style/practices?
I am new to work but the company I work in hires a lot of non-comp-science people who are smart enough to get the work done (complex) but lack the style and practices that should h …
2
votes
9answers
300 views
Java operator overloading
Not using operators makes my code obscure.
(aNumber / aNother) * count
is better than
aNumber.divideBy(aNother).times(count)
After 6 months of not writing a single comment I …
2
votes
8answers
228 views
Better way to write this Java code?
public void handleParsedCommand(String[] commandArr) {
if(commandArr[0].equalsIgnoreCase("message")) {
int target = Integer.parseInt(commandArr[1]);
String mess …
43
votes
30answers
2k views
Am I immoral for using a variable name that differs from its type only by case?
For instance, take this piece of code:
var person = new Person();
or for you Pythonistas:
person = Person()
I'm told constantly how bad this is, but have yet to see an exampl …
3
votes
4answers
53 views
In Eclipse, how do I change the default modifiers in the class/type template?
Eclipse's default template for new types (Window > Preferences > Code Style > Code Templates > New Java Files) looks like this:
${filecomment}
${package_declaration}
${typecomme …
3
votes
10answers
266 views
In Java, when should I use an abstract method in an interface?
I have the following interface in Java
public interface IFoo
{
public abstract void foo();
public void bar();
}
What is the difference between foo() and bar()?
When shou …
2
votes
11answers
236 views
When is it advisable to use a ret_val variable?
I have seen conflicting advice on whether the following code is better
def function():
ret_val = 0
if some_condition():
ret_val = 2
else:
ret_val = 3
…
16
votes
24answers
2k views
What is your “favorite” anti pattern?
By favorite I mean the one that gets your goat the most, not the one you enjoy using the most.
I'm fairly new to the concept of anti patterns and I'd like a list of do not do's. A …
1
vote
6answers
254 views
CSS: camelCase vs under_score
There is much to read out there concerning this old question. Most languages seem to have their preferred style - and everythings ok with this.
But what about this question of sty …
6
votes
17answers
598 views
Is this good C# style?
Consider the following method signature:
public static bool TryGetPolls( out List<Poll> polls, out string errorMessage)
This method performs the following:
accesses the …
5
votes
7answers
229 views
A good way to implement useable Callbacks in C++
I have a custom Menu class written in C++. To seperate the code into easy-to-read functions I am using Callbacks.
Since I don't want to use Singletons for the Host of the Menu I p …
