0
votes
Using NaN in C++?
Try turning off floating point exceptions in the compiler settings or using the quiet NaN.
…
3
votes
Is there a simple script to convert C++ enum to string?
@hydroo: Without the extra file:
#define SOME_UNION(DO) \
DO(Foo) \
DO(Bar) \
DO(Baz)
#define MAKE_UNION(VAR) VAR,
enum MetaSyntacticVariable{
SOME_UNION(MAKE_UNION …
6
votes
Print really big numbers
Those numbers won't fit into any C++ data types. If you just want to print them, store the numbers in a string. If you want to do math on it, find an arbitrary precision math library and use that. …
4
votes
Most crucial elements in a light-weight C++ coding standard
Method and variable names in a common naming scheme for consistency; I don't tend to be bother much by anything else while reading source.
…
4
votes
c++ class friend
The statement friend class CPosition; means that CPosition can now access the private members of the CCube class. To every other class the members are still as private as you declared …
8
votes
4
votes
Do you use curly braces for additional scoping?
I only use it when I need to release something by the means of RAII and even then only when it should be released as early as I possibly can (releasing a lock for example).
…
-2
votes
How difficult is it to turn a “Java School” programmer into a C or C++ programmer?
It's just another language.
And if you stick with the relatively small subset of pure OOP features, there is really not that much to learn from a Java developers perspective. The only thin …
1
vote
What is the use of const overloading in C++?
You might want to use it to decide whether or not to return a const reference to an object or not. The STL's containers use a const overloaded begin() and end() function to decide whether to return …
2
votes
Weird #include problem
This doesn't have anything to do with the way you include files, it's a syntax error that you get because you didn't nest ( and ) correctly.
…
1
vote
Is std::string size() a O(1) operation?
Performance is guaranteed by the STL to be at least O(N) for containers, however many containers including std::string can implement this as O(1) and will. Usually it'll either return a simple vari …
2
votes
Are non-pure virtual functions with parameters bad practice?
It's not a bad practice and it's a common idiom for specifying parts of a class that are optional to implement.
Currently I'm using it for a user input system, because it would be tedious f …
5
votes
C++: Best algorithm to check if a vector is sorted
Is there something faster than a loop checking that v[i]<=v[i+1] ?
You will need to check any value to see if it's sorted, so it won't get any faster then O( …
1
vote
Can any one provide me a sample of Singleton in c++?
Just don't forget to make the copy constructor and assignment operators private.
…
1
vote
