Tagged Questions
1
vote
1answer
15 views
Declaring variable in class header VS. constantly declaring a variable in update cycle
Sorry if the title is a little vague, my terminology isn't that great yet.
What I'm t?rying to say is: which one is better in terms of memory management and if there is any difference Or which one is ...
12
votes
6answers
484 views
What is the origin of magic number 42, indispensable in coding? [closed]
Update:
Surprised that it is being so heavily downvoted...
The question is coding-related and before asking this question I have googled for "42" in combination with:
...
3
votes
7answers
139 views
Logging best practice - log method call or log at beginning of a target method?
When we schould log: before function call (example A) or at beginning of a target method (example B)?
Note, that this question is about exact logger function call placement, not general best logging ...
3
votes
3answers
84 views
Are long variable names a waste of memory?
If I have an variable int d; // some comment.
Will that be better than int daysElapsedSinceBlahBlahBlahBlah with no comment.
It is more reabale, but will it waste memory?
0
votes
1answer
93 views
General programming, 2d array, whats wrong with a double for loop?
This is a general programming question.
I have seen on a lot of posts that iterating through a 2d array via a double for loop is "horrible" "ugly" etc... Why is this?
Are arrays not an efficient ...
2
votes
1answer
31 views
HACK and UNDONE tags usage
Many software engineers are familiar with the usage of special comment “tags” that can be added to their code comments, for use in searches, automated task tracking, and so forth. Some of the most ...
7
votes
3answers
92 views
(start, end) vs. (start, length) in API design
I've seen two alternative conventions used when specifying a range of indexes, e.g.
subString(int startIndex, int length);
vs.
subString(int startIndex, int endIndex);
They are obviously ...
1
vote
1answer
103 views
Is there symbolic date in the world of programming that I can use in snippets/comments?
Programmers often use recurrent values in snippets or comments. For example, in Java
String s = "foo"; // recurrent value: "foo"
int i = 42; // recurrent value: 42
double d = 1337; // ...
2
votes
3answers
148 views
Why do people use if(null == var) style tests? [closed]
Some folks, typically those that come from a C background, code their tests for null like this:
if (null == someVar)
in the belief that the "normal" style
if (someVar == null)
might accidentally ...
1
vote
2answers
81 views
Should I indent all assignment statements so that all “=” signs come in the same line?
Some of my colleagues follow this indentation style, where they add spaces/tabs before and after each = operator in assignment statements. They even do this even if there is only one assignment ...
3
votes
1answer
126 views
Should I avoid magic strings as possible?
I have the next piece of code:
internal static string GetNetBiosDomainFromMember(string memberName)
{
int indexOf = memberName.IndexOf("DC=", ...
5
votes
5answers
116 views
What are better ways to create a method that takes many arguments? (10+?)
I was looking at some code of a fellow developer, and almost cried. In the method definition there are 12 arguments. From my experience..this isn't good. If it were me, I would have sent in an object ...
1
vote
3answers
107 views
when (not) to store a part of a nested data structure into a temporary variable — pretty/ugly, faster/slower?
What's the best way to read multiple numbers/strings in one array/struct/union, which itself is nested in one or more parent arrays/structs/unions?
1st example without temporary variable:
printf("%d ...
5
votes
3answers
136 views
Meaning of Program into Your Language and Program in Your Language
I've been reading Code Complete 2. As I am not native english speaker some statements take some time for me to understand. I would like you to describe the difference between these two statements the ...
2
votes
3answers
68 views
Is a simple ternary case okay for use in program flow as long as it does not hurt readability?
After reading To ternary or not to ternary? and Is this a reasonable use of the ternary operator?, I gathered that simple uses of the ternary operator are generally accepted, because they do not hurt ...
2
votes
3answers
52 views
How to do color coding source
How do they color code source code in an IDE. What is the basic indea behind it? What are they tokens they look for?
3
votes
2answers
65 views
How to go about designing a module?
How do you usually go about when you need to design a module? Till now I've taken care of how easy it is to use, how intuitive its API is, extendibility, performance and stuff like that.
But what ...
3
votes
2answers
46 views
Decomposing big member function
Decomposing a member function
In a class there is a member function that is rather long. Let's say we have
class Customer {
public:
void process();
...
};
The method process is by nature ...
2
votes
1answer
49 views
What best practices apply to property setters that refer to contained objects that might be null?
I'm working with a class that exposes a contained object's properties for data binding purposes. I ran into a couple lines of code that smell, but I'm not sure the best way to improve them.
Class ...
0
votes
1answer
34 views
What is the best formatting for operator placements on new lines?
For operations on multiple lines, most of the time, i see and use this formatting:
result = object->someValue() +
variable -
function(array) * (arg1 + arg2 + arg3 + arg4);
But i ...
2
votes
7answers
437 views
When should we insert blank line(s) in source code?
I'm not sure where I should add new blank line(s) in my source code. I would like to write beautiful code that is both easy to read and understand.
Is it object-based only, or concept-based? Answers ...
6
votes
8answers
349 views
Is “temp” ever a good variable name?
Sometimes I've been trying to come up with a good variable name for minutes, when I realize that it isn't worth the effort for this tiny loop. Is there any situation where it would be justified to ...
7
votes
1answer
440 views
linq styling, chaining where clause vs and operator
Is there a (logical/performance) difference to writing:
ATable.Where(x=> condition1 && condition2 && condition3)
or
...
2
votes
2answers
130 views
Coding style, variable name
I have a method e.g. getSome(String param, boolean active). When I call this method I create a variable as shown below.
boolean active = true;
getFoo("some", active); // To get active foo
...
7
votes
7answers
184 views
When I define functions, in what order should I put the parameters?
I often find it hard to decide and am inconsistent. Are there some rules I could follow?
For example:
def remove_except(haystack, needle, exclude_value):
for key in hackstack:
if key in ...
4
votes
3answers
72 views
What is a common and sensible parameter order for functions?
Assuming they are all mandatory:
function search (haystack, needle)
function search (needle, haystack)
function placeObject (object, column, row)
function placeObject (column, row, object)
function ...
1
vote
2answers
57 views
Setting boolean field with method return
I have this code :
if (something.equals(something1)) {
myObj.setBoolean(true);
} else {
myObj.setBoolean(false);
}
Is there any reason to write above code instead of just :
...
2
votes
6answers
234 views
Should I use constants instead of strings even if the strings are only ever used once?
I have a piece of code that parses some obscure text file.
This text file can contain various keywords. At some point, there is some lengthy part that reads like this:
void loadKeywords() {
...
2
votes
3answers
225 views
coding guidelines - consistent variable naming
I am currently writing a coding style guideline for junior devlopers, and I am curious if anyone uses list of common variable names (for basic concepts), to limit confusion in codebase?
For example:
...
4
votes
1answer
223 views
What is rc stands for
I saw a lot of times code where return status of function was set to *rc * variable (e.g. int rc = foo();). I though it some sort of convention and blindly used it all over my code.
Recently was ...
2
votes
2answers
113 views
Elegant way to handle “impossible” code paths
Occasionally I'll have a situation where I've written some code and, based on its logic, a certain path is impossible. For example:
activeGames = [10, 20, 30]
limit = 4
def getBestActiveGameStat():
...
3
votes
6answers
132 views
Style Question: if block in or around function?
Let's say that I have a function that should only execute if some constant is defined. which of the following would be better
Option 1: wrap all the function calls in an if block:
...
0
votes
5answers
31 views
Is it simpler to group tests or to keep them separate?
I just had a discussion with a colleague where we disagreed about which of the following snippets was simpler:
public boolean foo(int x, int y) {
if (x < 0)
return false;
if (y ...
2
votes
5answers
466 views
Documenting getters and setters
For simple getters/setters, like the one below, what's the best way to document it?
public float getPrice()
{
return price;
}
I'm pretty strict about coding standards, so my IDE warns me about ...
0
votes
3answers
138 views
Multiple returns versus Exit for
I have the following VB.NET code (but for each loops are in most languages, thus the language-agnostic tag):
Public Function VerifyServiceName(ByRef sMachineName As String, ByRef sServiceName As ...
1
vote
4answers
178 views
Supporting Code Metrics with Case Studies
I'm principally interested in case studies on code metrics, relating code readability to defect reduction, that justify taking seriously cyclomatic complexity or some similar metric. Wikipedia has ...
9
votes
8answers
775 views
A or B, not both, not neither
Ever since reading Clean Code I have been trying to keep my code descriptive and easy to understand. I have a condition where either A or B must be filled in. But not both. And not neither. ...
14
votes
9answers
398 views
Programmers dictionary/lexicon for non native speakers
I'm not an English speaker, and I'm not very good at English. I'm self thought. I have not worked together with others on a common codebase. I don't have any friends who program. I don't work with ...
19
votes
8answers
1k views
Is there a standard for “???”, “!!!”, “TODO” etc. tags in comments?
I'm talking about special words/tokens used in the beginning of comments, to facilitate grepping or otherwise to attach some special meaning to the comment, like // TODO: Find out what to do about ...
10
votes
17answers
1k views
Should I test if equal to 1 or not equal to 0?
I was coding here the other day, writing a couple of if statements with integers that are always either 0 or 1 (practically acting as bools). I asked myself:
When testing for positive result, which ...
6
votes
4answers
123 views
Best practice - When to evaluate conditionals of function execution
If I have a function called from a few places, and it requires some condition to be met for anything it does to execute, where should that condition be checked? In my case, it's for drawing - if the ...
2
votes
8answers
197 views
How to force myself to follow naming and other conventions
I believe, I program good, at least my code produces results...
But I feel I have drawback... I hardly follow any naming conventions... neither for variables.. nor for methods... nor for ...
7
votes
10answers
202 views
When I'm iterating over two arrays at once, which one do I use as the limit?
I'm always struggling with something like the following Java example:
String breads[] = {"Brown", "White", "Sandwich"};
int count[] = new int[breads.length];
for (int i = 0; i < ****; i++)
{
// ...
7
votes
4answers
348 views
What's the reason for leaving an extra blank line at the end of a code file?
Eclipse and MyEclipse create new Java files with an extra blank line after the last closing brace by default. I think CodeWarrior did the same thing a few years back, and that some people leave such ...
38
votes
6answers
2k views
Why is it recommended to have empty line in the end of file?
Some code style tools recommend this and I remember seeing some unix command line tools warning about missing empty line.
What is the reasoning for having an extra empty line?
29
votes
11answers
1k views
Is this an abuse of try/finally?
Given that multiple return statements are acceptable (I sort of disagree, but let us digress), I'm looking for a more acceptable way to achieve the following behavior:
Option A: multiple returns, ...
1
vote
3answers
154 views
Software and Security - do you follow specific guidelines?
As part of a PCI-DSS audit we are looking into our improving our coding standards in the area of security, with a view to ensuring that all developers understand the importance of this area.
How do ...
14
votes
15answers
1k views
Do you use 1-3 letters variables EVERYWHERE?
I notice, in C# i use very short variable names EVERYWHERE. My code is polluted with
foreach(var (v|f|i) in SOMETHING)
for(int (i|n|z)=0
var (ret|r) = blah();
...
return ret;
var sw = new ...
2
votes
7answers
147 views
Pattern: Elegant way to do something upon function exit?
I have a function with logic that looks like this:
doStuff1()
try:
doStuff2()
except type1:
error1()
return endstuff()
except type2:
error2()
return endstuff()
except:
...
0
votes
5answers
100 views
Proper naming query
i have naming problems with two of my functions
i've got a function is_void that returns true if the argument is "empty" (in some sense). How would you call an opposite function? isnt_void? is_set? ...



