Search Results

4
votes
3answers
2k views

Avoid trailing zeroes in printf()

I keep stumbling on the format specifiers for the printf() family of functions. What I want is to be able to print a double (or float) with a maximum given number of digits after the decimal point …
1
vote

How do you deal with NUL?

While, on the whole, I would advice using named constants, this is one exception. To me, defining: #define NULL 0 #define END_OF_STRING '\0' makes as much sense a …
3
votes

Looking for a better way than virtual inheritance in C++

We had a very similar problem in a project and we solved it by just NOT deriving ImprovedShape from Shape. If you need Shape functionality in ImprovedShape you can dynamic_cast, knowing that your …
4
votes

What’s the best signature for clone() in C++?

I think the function semantics are so clear in this case that there is little space for confusion. So I think you can use the covariant version (the one returning a dumb pointer to the real type) …
1
vote

c++ enum to unsigned int comparison

In fact, -1 is implicitly cast to its equivalente unsigned value when it is assigned to nextValue. The equivalente unsigned is the value with the same bitwise representation (which is 111111111111 …
0
votes

Where can i get c++ standard manual?

Duplicated here. …
1
vote

WinApi C++, How to open a window push down a button?

It depends completely on the windowing system you are using, or the graphics library. ¿Are you using .NET? ¿MFC? In any case, your button object will have a way to associate a function to …
2
votes

exception hierarchy vs error enumeration

I think you are having the worst of two worlds. A large exception hierarchy is useless because clients are known to be lazy and will end up checking only for the top nodes (maybe only for the hier …
6
votes

Why can’t variables be declared in a switch statement?

There is a conflict here between language syntax and common sense. For us humans, it looks like this code (taken from 1800 INFORMATION's answer) should work fine: class A { // ha …
3
votes

when should you use ‘friend’ in c++ ?

The short answer would be: use friend when it actually improves encapsulation. Improving readability and usability (operators << and >> are the canonical example) i …
2
votes

C++: is string.empty() always equivalent to string == “”?

str.empty() is never slower, but might be faster than str == "". This depends on implementation. So you should use str.empty() just in case. This is a bit like using ++i instead of i++ to …
6
votes

Suggestion for template book for c++?

Maybe a bit mind-boggling if you are just learning, but after the books you mention, you may want to read Andrei Alexandrescu's …
3
votes

Should a buffer of bytes be signed or unsigned char buffer?

Do you really care? If you don't, just use the default (char) and don't clutter your code with unimportant matter. Otherwise, future maintainers will be left wondering why did you use signed (or …
1
vote

How does const correctness help write better programs?

Just enlisting the compiler's help when writing code would be enough for me to advocate const-correctness. But today there is an additional advantage: multi-threading code is generally easier to w …
10
votes

C++ Style Convention: Parameter Names within Class Declaration

It is much better to use the parameter names in the declaration, and use good parameter names. This way, they serve as function documentation. Otherwise, you will have to write additional comment …

1 2 next
15 30 50 per page