0
votes
4answers
88 views
strcat() vs sprintf()
What would be faster? This:
sprintf(&str[strlen(str)], "Something");
or
strcat(str, "Something");
Is there any performance difference?
0
votes
4answers
86 views
Defining const pointer to a const string
Readed bog of Ulrich Drepper and come across 2 entries that looks like conficting.
In the first one (string in global space) Ulrich states that the string should be defines as:
c …
7
votes
8answers
229 views
Is it bad practice to use temporary variables to avoid typing?
I sometimes use temporary variables to shorten the identifiers:
private function doSomething() {
$db = $this->currentDatabase;
$db->callMethod1();
$db->callMe …
0
votes
5answers
64 views
Proper naming query
Hi
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 funct …
1
vote
4answers
93 views
Good introduction to generics
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 go …
3
votes
5answers
154 views
Why isn’t DRY considered a good thing for type declarations?
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 th …
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
…
0
votes
4answers
37 views
How to document the Main method?
Okay, so I've got a .NET console application with it's Main method, contained in a Program class. You know, the usual:
class Program
{
static void Main(string[] args)
{
…
1
vote
5answers
50 views
VB/VBA Variable Declaration Coding Standard - White Space
What is the significance of declaring variables in VB/VBA like so:
Private m_sName As String
Private m_lAge As Long
As opposed to;
Private m_sName As String
Pr …
10
votes
8answers
415 views
When is it too much “lambda action”?
Hi everybody :)
I often find myself using lambdas as some sort of "local functions" to make my life easier with repetetive operations like those:
Func<string, string> GetTe …
6
votes
7answers
203 views
Why is the usage of “#” comments frequently discouraged in PHP?
As far as I know, there are 3 types of comments recognized by PHP:
/* A block comment */
// A single-line comment
# Also a single-line comment
However, many coding standards, f …
5
votes
16answers
439 views
Coding Standards / Coding Best practices in C++
Consider the two code segments below.
Which one is better and Why? If you
have any other idea, please do
mention. Where can I find answers to
coding practices like these …
3
votes
5answers
155 views
Instance variable naming conventions in Cocoa
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.
I've read through Apple a …
1
vote
8answers
242 views
Coding practices in C++, what is your pick and why?
I have a big object say MyApplicationContext which keeps information about MyApplication such as name, path, loginInformation, description, details and others..
//MyApplicationCtx …
2
votes
6answers
96 views
How do you keep your backing fields organized? (Styles/Patterns)
c# 3.0 offers us getters and setters with compiler generated backing fields - this is really great, but there are plenty of times that you still need to use a backing field.
In a …
