MadKeithV

3,485
Reputation
184 views

Registered User

Name MadKeithV
Member for 1 year
Seen 14 hours ago
Website
Location Belgium
Age 32
Development Consultant, Project Manager, Development Trainer, musician :).
2d
awarded  Nice Answer
2d
accepted Cultural coding differences
Nov
5
awarded  Yearling
Oct
19
comment Delphi: Access violation after calling function from external DLL (C++)
Did you add the __stdcall in the Delphi defintion of the external function as well?
Oct
12
answered Default int type: Signed or Unsigned?
Oct
9
answered What do you find to be difficult and frustrating about managing software development?
Sep
28
answered What factors do you consider when deciding what to work on next?
Sep
25
answered Should this C++ temporary binding to reference member be illegal?
Sep
24
answered Biggest time loss bug
Sep
23
answered Missing features in Visual Studio?
Sep
23
revised VC++: non-global old-style function declarations?
Clarification.
Sep
23
comment Thread Creation Problem
Dup, by the same poster no less.
Sep
21
answered How can I avoid using exception in C++?
Sep
21
comment How can I avoid using exception in C++?
Could you clarify your question? As it stands, the answer would seem to be: you simply don't throw exceptions, and try to avoid the circumstances that cause external code to throw exceptions by defensive coding.
Sep
18
revised Parsing file in C++
Clarified the question, improvet formatting
Sep
18
answered Parsing file in C++
Sep
17
comment partially sort vector c++
In the above reworking, that never happens. It early-outs for either vector being empty.
Sep
17
revised partially sort vector c++
More tweaks.
Sep
17
comment partially sort vector c++
Dur... where's my head at this morning... Thanks for that RPG.
Sep
17
comment or is not valid C++ : why does this code compile ?
Unless _MSC_EXTENSIONS is defined
Sep
17
revised partially sort vector c++
Fixed missing test for empty vectors.
Sep
17
accepted partially sort vector c++
Sep
17
comment partially sort vector c++
Good point, sbi.
Sep
17
answered partially sort vector c++
Sep
16
comment or is not valid C++ : why does this code compile ?
It is not in Visual Studio 2003 through 2010 (msdn.microsoft.com/en-us/library/…)
Sep
16
answered or is not valid C++ : why does this code compile ?
Sep
16
awarded  Good Answer
Sep
15
accepted Accessing an array with a negative number!
Sep
15
answered How do I read a java object in C++?
Sep
14
comment Accessing an array with a negative number!
Your comment is correct - though I was under the impression that the original app had "hacked" around the negative index issue by mirroring the array in memory around 0 - giving the kind of behaviour with negative indexes that absolute value might do as well.
Sep
14
awarded  Nice Answer
Sep
14
revised Accessing an array with a negative number!
Clarification.
Sep
14
answered Stopping embedded Python
Sep
14
answered Accessing an array with a negative number!
Sep
14
awarded  Enlightened
Sep
14
awarded  Nice Answer
Sep
14
revised Does C or C++ have a standard regex library?
Added info about regex going into C++0x.
Sep
14
revised What’s the difference between virtual function instantiations in c++
More info.
Sep
14
answered What’s the difference between virtual function instantiations in c++
Sep
14
accepted Does C or C++ have a standard regex library?
Sep
14
answered Does C or C++ have a standard regex library?
Sep
8
comment Problems with Singleton Pattern
The comment about memory management is wrong in C++, in my opinion. The "singleton" as a member object of the application object (as defined by the framework), for example, has a well-defined time of destruction. Any singleton implementation based on a "static" somewhere is prone to the static initialization / destruction order fiasco. I've seen some really ugly hacks to get around accesses to singletons from the destructors of other singletons.
Aug
27
comment most illiterate code snippet that you saw in your practice
There's different style, and bad style. Comparing bool values to true and false is bad style, and it demonstrates a fundamental failure to fully understand the compiler and language. However, some vendors (cough Microsoft cough) had a BOOL value in their APIs that wasn't a bool, and could actually have values other than TRUE or FALSE, breeding this bad habit with a lot of developers.
Aug
27
comment prevent accidental object copying in C++
The canonical rule should be "when in doubt, check the assembly-language output" :).
Aug
27
revised prevent accidental object copying in C++
Integrated Konrad's excellent comment.
Aug
27
comment prevent accidental object copying in C++
That's a great article actually - I was aware of RVO but the last time I delved into it deeply I was still using VS2003 and it was risky business to depend on the compiler to get it right for more complex types. Glad to hear that it is becoming much less of an issue with C++0X
Aug
27
revised prevent accidental object copying in C++
Fixed missing word.
Aug
27
accepted prevent accidental object copying in C++
Aug
27
answered prevent accidental object copying in C++
Aug
5
comment What are the possible obstacles for a project if team members are geographical far from each other?
+1. If they have any kind of technical aptitude, there is only one thing that matters when you are working with others and that is how well you communicate. Geographical separation makes that harder, so you will have to spend more time on it.