1
vote
C++ inheritance and member function pointers
A member function pointer cannot directly point to a derived or super class method. It must point to a method from the same class.
Otherwise, if it could directly point to a derived method, …
2
votes
Difference between pointer variable and reference variable in C++
A reference on the stack doesn't take up any space at all. Or rather, it doesn't matter how much space it takes up since you can't actually see any side effect of whatever space it would take up. …
19
votes
Hidden Features of C++?
Lifetime of temporaries bound to const references is one that few people know about. Or at least it's my favorite piece of C++ knowledge that most people don't know about.
const MyC …
1
vote
What happens to global variables declared in a DLL?
If you want to see the actual code that gets executed when linking a .dll, take a look at %ProgramFiles%\Visual Studio 8\vc\crt\src\dllcrt0.c.
From inspection, destructors will be called vi …
0
votes
Determine the size of a pipe without calling read()
On Windows you can always use PeekNamedPipe, but I doubt that's what you want to do anyway.
MSN
…
2
votes
Smart Pointers: Or who owns you baby?
Don't have shared ownership. If you do, make sure it's only with code you don't control.
That solves 100% of the problems, since it forces you to understand how everything interacts.
…
0
votes
Minimal latency objects pooling technique in multithread application
Why do you have multiple threads destroying objects they did not create? It's a simple way to handle object lifetime, but the costs can vary widely depending on use.
Anyways, if you haven't …
0
votes
How to implement thread safe reference counting in C++
That particular code posted in that ddj article is adding extra complexity to account for bugs in using smart pointers.
Specifically, if you can't guarantee that the smart pointer won't cha …
1
vote
How does delete[] “know” the size of the operand array?
It's defined in the C++ standard to be compiler specific. Which means compiler magic. It can break with non-trivial alignment restrictions on at least one major platform.
You can think abou …
0
votes
Is there any way to determine the size of a C++ array programmatically? And if not, why?
Is there any way to determine the size of a C++ array programmatically? And if not, why?
No, unless you keep track of it yourself.
Because if the …
0
votes
Is there any way to determine the size of a C++ array programmatically? And if not, why?
@Dima,
How would the compiler know what the size of p is?
The compiler has to know the size of p; otherwise, it cannot implement delete[]. …
0
votes
Constants and compiler optimization in C++
Const helps compilers optimize mainly because it makes you write optimizable code. Unless you throw in const_cast.
MSN
…
9
votes
C++’s “placement new”
It's useful if you want to separate allocation from initialization. STL uses placement new to create container elements.
MSN
…
0
votes
Visual C++ 2008 ‘Release’ build contains debug information
The .exe will be slightly larger due to a reference to the .pdb file (i.e., an extra path). That's about it.
MSN
…
4
votes
Strange program hang, what does this mean in debug?
If you are using MSVC and the Debug build configuration, 0xdddddddd usually means that you are attempting to access freed memory. The debug CRT memory manager fills free memory with …
