2
votes
6answers
662 views
Proper replacement for the missing ‘finally’ in C++
Since there is no finally in C++ you have to use the RAII design pattern instead, if you want your code to be exception safe. One way to do this is by using the destructor of a local class like this:
…
7
votes
4answers
2k views
Does C++ support ‘finally’ blocks? (And what’s this ‘RAII’ I keep hearing about?)
Does C++ support 'finally' blocks?
What is the RAII idiom?
What is the difference between C++'s RAII idiom and C#'s 'using' statement?
6
votes
5answers
943 views
How to typedef a pointer to method which returns a pointer the method?
Basically I have the following class:
class StateMachine {
...
StateMethod stateA();
StateMethod stateB();
...
};
The methods stateA() and stateB() should be able return pointers to stateA() and …
6
votes
3answers
488 views
Is it possible to prevent stack allocation of an object and only allow it to be instiated with ‘new’?
Is it possible to prevent stack allocation of an object and only allow it to be instiated with 'new' on the heap?
6
votes
4answers
340 views
How do I prevent a class from being allocated via the ‘new’ operator? (I’d like to ensure my RAII class is always allocated on the stack.)
I'd like to ensure my RAII class is always allocated on the stack.
How do I prevent a class from being allocated via the 'new' operator?
10
votes
7answers
748 views
How do I remove code duplication between similar const and non-const member functions?
Let's say I have the following class X where I want to return access to an internal member:
class Z
{
// details
};
class X
{
std::vector<Z> vecZ;
public:
Z& Z(size_t index)
…
40
votes
6answers
2k views
Why isn’t sizeof for a struct equal to the sum of sizeof of each member?
Why does the 'sizeof' operator return a size larger for a structure than the total sizes of the structure's members?
22
votes
4answers
2k views
Why is it wrong to use std::auto_ptr<> with STL containers?
Why is it wrong to use std::auto_ptr<> with STL containers?
