Search Results

0
votes

What is the best C/C++ coding style?

As someone wise once said, "I believe most code should be indented six feet under and covered with dirt." Many companies have coding styles that define unimportant stuff like where to put b …
27
votes

Hidden Features of C++?

The array operator is associative. A[8] is a synonym for *(A + 8). Since addition is associative, that can be rewritten as *(8 + A), which is a synonym for..... 8[A] You didn't say …
6
votes

Which I/O library do you use in your C++ code?

Back in the bad old days, the C++ Standards committee kept mucking about with the language and iostreams was a moving target. If you used iostreams, you were then given the opportunity to rewrite …
9
votes

Using “super” in C++

Super (or inherited) is Very Good Thing because if you need to stick another inheritance layer in between Base and Derived, you only have to change two things: 1. the "class Base: foo" and 2. the t …
8
votes

Unresolved external symbol on static class members

You forgot to add the definitions to match your declarations of X and Y unsigned char test::X; unsigned char test::Y; somewhere. You might want to also initialize …
1
vote

Do you consider this technique “BAD”?

I would say your solution can be the right solution, but it depends. Paul Tomblin has posted an answer that is better (a series of if tubes) ... if it can be used. Paul's solution cannot b …