Steve Fallows

1,825
reputation
203 views

Registered User

name Steve Fallows
member for 1 year
seen 1 hour ago
website
location
age
Dec
10
comment Mapping enum values to strings in C++
In a previous job we had a fairly thorough system to define all return codes in enums and a Perl script to pull them out and make a compileable file of strings so they could be printed when error occurred. These days I would probably use Python but Perl got the job done.
Dec
9
comment constructor and variable names in c++ vs java
Leading "_" is reserved by the standard for use by the compiler implementation. Not a valid choice for this use. I usually see trailing "_" used if not leading "m_".
Dec
8
answered Header inclusion optimization
Dec
5
answered Casting a pointer to a sub-class (C++)
Nov
9
answered Modify dll exports (symbol table). I want to obfuscate the function names.
Nov
3
comment where is rvalue stored in c?
Good example. I was going to say "look at the assembly generated" but I was too lazy to create an example. :) Note also, it can become more complicated if the constant value is larger. Some processors have a limit (e.g. 8 bits or 16 bits) on how large a value can be put directly into an instruction.
Nov
3
answered where is rvalue stored in c?
Oct
25
answered returning a pointer of a class through it’s own functions
Oct
12
comment Help with error: ISO C++ forbids declaration of ‘vector’ with no type
Well then include this option: using std::vector; I prefer it in the .cpp immediately after the include. Saves tying std:: all over the place and documents why the header was included (which is not always as obvious as in the case of vector).
Oct
7
comment I’m a developer. How do I become a technical manager?
You forgot the part about becoming completely clueless. :)
Sep
27
awarded  Nice Answer
Sep
20
awarded  Yearling
Sep
19
accepted “Find All References” broken in one solution
Sep
18
answered Cross compiling unit tests with CppUnit or similar
Sep
16
comment Is there a Findbugs and / or PMD equivalent for C/C++?
PC-Lint is fairly easy to integrate at least from the error reporting perspective since you can configure the error message format as required by your IDE to find errors automagically.
Sep
14
comment Conditional operator can’t resolve overloaded member function pointers
You should indicate what "doesn't work" means. Compiler error? Unexpected runtime behavior?
Sep
14
answered C++ tutorial for experienced C programmer.
Sep
14
comment Stack overflow due to heap allocation/deallocation..
No, the NULL test is unnecessary.
Sep
3
answered Unable to catch c++ exception using catch (…)
Aug
29
comment Why don’t more C programs embed Perl?
Because C programmers are 'real programmers'. They don't need no steenkin' perl. :)
Aug
17
comment UINT16 value appears to be “backwards” when printing.
FWIW, endianness is not an attribute of the OS but of the hardware processor. x86 family processors are all little endian. OTOH right-thinking processors such as old 68K family are big-endian. :)
Aug
16
comment check if numbers have the same sign
Can you provide a reference for this as a part of the language? I've never heard of it. Is it part of the forthcoming standard?
Aug
15
revised Why is *= different regarding loss of data on conversion?
added 131 characters in body
Aug
15
comment Why is *= different regarding loss of data on conversion?
The example is a brand new project. Only /W4 was added.
Aug
14
asked Why is *= different regarding loss of data on conversion?
Jul
28
comment How to interpret numbers correctly (hex, oct, dec)
Using the right tool is good. But understanding bases, conversion and string/number representations are core things to understand well. Might be worth rolling your own once for the knowledge. I'd do it in plain C and skip any operator overloading while learning about this stuff.
Jul
24
comment Auto updated header comments in C++
Another reason I dislike version control updated fields is that it can create spurious differences - i.e. the only difference is the date field. Plays havoc with trying to find real differences in large file sets. Not worth it for things with limited value to begin with.
Jul
21
comment C# popularity industry-wide or is SO atypical?
I prefer "See Octothorpe". :)
Jul
12
comment Should I use std:: and boost:: prefixes everywhere?
This approach has the added advantage that by putting the using statement immediately after the include, it documents what is being used from that include file. In this case we immediately see that iostream was included to use cout.
Jul
7
comment Performance difference in for loop condition?
He didn't say he was worried - just curious. I really wish people would stop waving the "premature optimization" flag every time someone "just wants to know". Curiosity is a good thing.
Jun
26
revised What is the difference between pointer and array in the following context?
added 53 characters in body
Jun
26
answered What is the difference between pointer and array in the following context?
Jun
26
comment How to check if a file has been opened by another application in C++
FYI,this should be an edit to your question rather than an answer.
Jun
26
awarded  
Jun
24
comment throwing exceptions of objects on the stack, mem leak with new?
Actually, throwing cats is more than a bug - it's downright mean. :)
Jun
24
comment C: Using memset function
Or any integer (short, int, long etc.) value if you need all bytes of each integer the same. 0 and 0xFF being the most likely candidates.
Jun
22
answered When HeapCreate function is used or in what cases do you need a number of heaps?
Jun
20
comment What are the nicknames for common programming special characters?
+1 for octothorpe
Jun
19
answered “Find All References” broken in one solution