Refactoring, braces, indentation, Hungarian notation, and other stylistic issues relating to code.
221
votes
23answers
53k views
Are PHP short tags acceptable to use?
Here's the info according to the official documentation:
There are four different pairs of
opening and closing tags which can be
used in php. Two of those, <?php ?>
and <script ...
389
votes
48answers
43k views
Should a function have only one return statement?
Are there good reasons why it's a better practice to have only one return statement in a function?
Or is it okay to return from a function as soon as it is logically correct to do so, meaning there ...
85
votes
21answers
24k views
When is JavaScript's eval() not evil?
I'm writing some JavaScript to parse user-entered functions (for spreadsheet-like functionality). Having parsed the formula I could convert it into JavaScript and run eval() on it to yield the result. ...
14
votes
3answers
2k views
Excel macro - Avoiding using Select [closed]
I've heard much about the understandable abhors of using .Select in Excel VBA Macros, but am unsure of how to avoid using them, or a good resource that can shed some light on how to avoid it.
I've ...
36
votes
7answers
10k views
Prefixing property names with an underscore in Objective C [duplicate]
Possible Duplicate:
How does an underscore in front of a variable in a cocoa objective-c class work?
I've always avoided underscores in my variable names, perhaps because its just not what ...
84
votes
34answers
16k views
When do you use the “this” keyword? [closed]
This may be a silly question, but I was curious how other people use the this keyword. I tend to use it in constructors but may also use it throughout the class in other methods. Some examples:
In ...
311
votes
24answers
74k views
When to Use Double or Single Quotes in JavaScript
console.log("double"); vs console.log('single');
I see more and more JavaScript libraries out there using single quotes when handling strings. What are the reasons to use one over the other? I ...
94
votes
4answers
21k views
Why rename synthesized properties in iOS with leading underscores? [duplicate]
Possible Duplicate:
How does an underscore in front of a variable in a cocoa objective-c class work?
When creating a new project in Xcode 4, the boilerplate code adds an underscore ...
34
votes
7answers
6k views
Why does one often see “null != variable” instead of “variable != null” in C#?
In c#, is there any difference in the excecution speed for the order in which you state the condition?
if (null != variable) ...
if (variable != null) ...
Since recently, I saw the first one quite ...
110
votes
10answers
29k views
C++: “std::endl” vs “\n”
Many C++ books contain example code like this...
std::cout << "Test line" << std::endl;
...so I've always done that too. But I've seen a lot of code from working developers like this ...
289
votes
10answers
183k views
HTML 5: Is it <br> <br/> or <br />?
I've tried checking other answers, but I'm still confused--especially after seeing W3schools HTML 5 reference.
I thought HTML 4.01 was supposed to "allow" single-tags to just be <img> and ...
189
votes
14answers
42k views
What open source C++ static analysis tools are available? [closed]
Java has some very good open source static analysis tools such as FindBugs, Checkstyle and PMD. Those tools are easy to use, very helpful, runs on multiple operating systems and free.
Commercial C++ ...
67
votes
12answers
34k views
A free tool to check C/C++ source code against a set of coding standards?
It looks quite easy to find such a tool for Java (Checkstyle, JCSC), but I can't seem to find one for C/C++. I am not looking for a lint-like static code analyzer, I only would like to check against ...
86
votes
33answers
8k views
Is there a valid reason for enforcing a maximum width of 80 characters in a code file, this day and age? [closed]
Seriously. On a 22" monitor, it only covers maybe a quarter of the screen. I need some ammo to axe down this rule.
Edit: I'm not saying that there shouldn't be a limit; I'm just saying, 80 characters ...
57
votes
29answers
18k views
C# String output: format or concat?
Let's say that you want to output or concat strings, what style do you prefer:
var p = new { FirstName = "Bill", LastName = "Gates" };
Console.WriteLine("{0} {1}", p.FirstName, ...
20
votes
6answers
1k views
What is the difference or value of these block coding styles in Ruby?
Which style is preferred?
Is there a good reason for one vs. the other?
Thanks in advance!
1) cmds.each do |cmd|
end
2) cmds.each { |cmd|
}
Example code:
cmds = [ "create", "update", ...
102
votes
14answers
25k views
What is a magic number, and why is it bad?
What is a magic number?
Why should it be avoided?
Are there cases where it's appropriate?
46
votes
8answers
15k views
#pragma once vs include guards?
I'm working on a codebase that is known to only run on windows and be compiled under Visual Studio (it integrates tightly with excel so it's not going anywhere). I'm wondering if I should go with the ...
26
votes
4answers
44k views
Invalid argument supplied for foreach()
It often happens to me to handle data that can be either an array or a null variable and to feed some foreach with these data.
$values = get_values();
foreach ($values as $value){
...
}
When you ...
33
votes
7answers
11k views
php: access array value on the fly
in php, i often need to map a variable using an array ... but i can not seem to be able to do this in a one liner. c.f. example:
// the following results in an error:
echo array('a','b','c')[$key];
...
438
votes
19answers
67k views
Single quotes vs. double quotes in Python [closed]
According to the documentation, they're pretty much interchangeable. Is there a stylistic reason to use one over the other?
58
votes
18answers
5k views
Style: Dot notation vs. message notation in Objective-C 2.0
In Objective-C 2.0 we got the "dot" notation for properties. I've seen various back and forths about the merits of dot notation vs. message notation. To keep the responses untainted I'm not going to ...
38
votes
9answers
24k views
Stand-alone Java code formatter/beautifier/pretty printer?
I'm interested in learning about the available choices of high-quality, stand-alone source code formatters for Java.
The formatter must be stand-alone, that is, it must support a "batch" mode that is ...
57
votes
7answers
6k views
Why do some scripts omit the closing php tag '?>'?
In some scripts I see that they omit writing a closing tag ?> for the script. I don't know why. Can someone tell me why and if I should do this as well?
(I'm sure they have not forgotten it.)
43
votes
11answers
5k views
Is there a downside to adding an anonymous empty delegate on event declaration?
I have seen a few mentions of this idiom (including on SO):
// Deliberately empty subscriber
public event EventHandler AskQuestion = delegate {};
The upside is clear - it avoids the need to check ...
25
votes
2answers
4k views
Using do block vs brackets {}
New to ruby, put on your newbie gloves.
Is there any difference (obscure or practical) between the following two snippets?
my_array = [:uno, :dos, :tres]
my_array.each { |item|
puts item
}
...
15
votes
28answers
3k views
How to check for equals? (0 == i) or (i == 0) [closed]
Okay, we know that the following two lines are equivalent -
(0 == i)
(i == 0)
Also, the first method was encouraged in the past because that would have allowed the compiler to give an error ...
12
votes
9answers
5k views
C++ cast syntax styles
A question related to Regular cast vs. static_cast vs. dynamic_cast:
What cast syntax style do you prefer in C++?
C-style cast syntax: (int)foo
C++-style cast syntax: static_cast<int>(foo)
...
20
votes
5answers
6k views
What code folding plugins work on Eclipse 3.6?
I am new to java development environment and I find it difficult to manage my code properly. .Net provides the #regions which is a good solution for code management.
I am using Eclipse environment ...
34
votes
12answers
3k views
Is it bad to explicitly compare against boolean constants e.g. if (b == false) in Java?
Is it bad to write:
if (b == false) //...
while (b != true) //...
Is it always better to instead write:
if (!b) //...
while (!b) //...
Presumably there is no difference in performance (or is ...
157
votes
11answers
60k views
Vim 80 column layout concerns
I feel like the way I do 80-column indication in Vim is incorrect: set columns=80. At times I also set textwidth but I like to be able to see and anticipate line overflow with the set columns ...
54
votes
5answers
4k views
What is the purpose of wrapping whole Javascript files in anonymous functions like “(function(){ … })()”?
I have been reading a lot of Javascript lately and I have been noticing that the whole file is wrapped like the following in the .js files to be imported.
(function() {
...
code
...
})()
...
39
votes
3answers
3k views
Do you use the TR 24731 'safe' functions?
The ISO C committee (ISO/IEC JTC1/SC21/WG14) has published TR 24731-1 and is working on TR 24731-2:
TR 24731-1: Extensions to the C Library Part I: Bounds-checking interfaces
WG14 is working ...
26
votes
34answers
5k views
While coding, how many columns do you format for? [closed]
in the old days everything was 80 columns. so if you wanted your code to be readable, you'd make it fit. but that's not the case anymore with wider and wider screens, so how long of line is too ...
29
votes
9answers
10k views
'AND' vs '&&' as operator
Actually, I am facing a codebase where developpers decided to use 'AND' and 'OR' instead of '&&' and '||'. I know that there is difference in operators precedence (&& goes before ...
20
votes
13answers
4k views
for loop optimization
List<String> flowers = new ArrayList<String>();
My for loop currently looks like this...
for (int i = 0; i < flowers.size(); i++) {
...
}
OR should I change this to look like the ...
13
votes
12answers
3k views
Should I use public properties and private fields or public fields for data?
In much of the code I have seen (on SO, thecodeproject.com and I tend to do this in my own code), I have seen public properties being created for every single private field that a class contains, even ...
162
votes
7answers
32k views
What is a clean, pythonic way to have multiple constructors in Python?
I can't find a definitive answer for this. AFAIK, you can't have multiple __init__ functions in a Python class. So what is a good way to solve this problem?
Suppose I have an class called Cheese ...
79
votes
11answers
13k views
Should Python import statements always be at the top of a module?
PEP 08 states:
Imports are always put at the top of the file, just after any module comments and docstrings, and before module globals and constants.
However if the class/method/function that I ...
29
votes
13answers
6k views
Conditional logging with minimal cyclomatic complexity
After reading "What’s your/a good limit for cyclomatic complexity?", I realize many of my colleagues were quite annoyed with this new QA policy on our project: no more 10 cyclomatic complexity per ...
35
votes
7answers
23k views
ruby/ruby on rails memory leak detection
I wrote a small web app using ruby on rails, its main purpose is to upload, store, and display results from xml(files can be up to several MB) files. After running for about 2 months I noticed that ...
46
votes
4answers
2k views
Is pass-by-value a reasonable default in C++11?
In traditional C++, passing by value into functions and methods is slow for large objects, and is generally frowned upon. Instead, C++ programmers tend to pass references around, which is faster, but ...
42
votes
8answers
24k views
Getter and Setter?
I'm not a PHP developer, so I'm wondering if in PHP is more popular to use explicit getter/setters, in a pure OOP style, with private fields (the way I like):
class MyClass {
private $firstField;
...
45
votes
6answers
27k views
android set style in code
I'm trying to use the TextView constructor with style like this:
TextView myText = new TextView(MyActivity.this, null, R.style.my_style );
however, when i do this, the text view does not appear to ...
6
votes
3answers
14k views
android dynamically change style at runtime
I'd like to make my font sizes configurable but i'd also like to make use of the style tag in my layouts. Is it possible to change the definition of a style at runtime? or is the only option to ...
40
votes
22answers
13k views
Setting variable to NULL after free
In my company there is a coding rule that says, after freeing any memory, reset the variable to NULL. For example ...
void some_func ()
{
int *nPtr;
nPtr = malloc (100);
free (nPtr);
...
50
votes
8answers
35k views
Declaring Multiple Variables in JavaScript
In JavaScript, it is possible to declare multiple variables like this:
var variable1 = "Hello World!";
var variable2 = "Testing...";
var variable3 = 42;
...or like this:
var variable1 = "Hello ...
20
votes
5answers
26k views
style.display='none' doesnt work on option tags in chrome, but it does in firefox, anyone know why? or a workaround?
ok, heres some sample code that demonstrates the problem.
if i click the button in firefox, the first option disappears.
if i click the button in chrome, nothing happens, or rather if i inspect the ...
304
votes
11answers
145k views
Notepad++ tabs to spaces
Does anyone know how to convert tabs to spaces in Notepad++? I found a webpage that suggests it's possible (http://www.texteditors.info/notepad-replacements-compared.php) but I couldn't find any ...
72
votes
15answers
38k views
Using “super” in C++
My style of coding includes the following idiom:
class Derived : public Base
{
public :
typedef Base super; // note that it could be hidden in
// protected/private ...