I like the idea of const member variables especially when I wrap C functions into classes. The constructor takes a resource handle (e.g. a file descriptor) that stays valid during the whole object life time and the destructor finally closes it. (That is the idea behind RAII, right?)

But with the C++0x move constructor i run into a problem. Since the destructor is also called on the "unloaded" object i need to prevent the cleanup of the resource handle. Since the member variable is const i have no way to assign the value -1 or INVALID_HANDLE (or equivalent values) to indicate to the destructor that it should not do anything.

Is there a way that the destructor is not called if the state of an object was moved to another object?

Example:

class File
{
public:
    // Kind of "named constructor" or "static factory method"
    static File open(const char *fileName, const char *modes)
    {
        FILE *handle = fopen(fileName, modes);
        return File(handle);
    }

private:
    FILE * const handle;

public:
    File(FILE *handle) : handle(handle)
    {
    }

    ~File()
    {
        fclose(handle);
    }

    File(File &&other) : handle(other.handle)
    {
        // The compiler should not call the destructor of the "other"
        // object.
    }

    File(const File &other) = delete;
    File &operator =(const File &other) = delete;
};
link|improve this question

80% accept rate
feedback

4 Answers

up vote 3 down vote accepted

No, there is no way to do this. I would suggest that if you're really attached to the handle variable being const you should have a non-const flag member variable that indicates whether or not destruction should do anything.

link|improve this answer
Your answer is for sure a way to go. But related to C++0x I do not like the style that destructors have to check if desctruction should really occur. Shouldn't they assume the object is fully up and running and now is the point of destruction? – mazatwork Jun 11 '11 at 18:28
@mazatwork: Well, think of it this way. Suppose you had a complicated object that could be in several different states that each required a different set of destructors. Like, for example, there is a cache that may or may not be initialized, or a database connection that may or may not need to be closed. Are you 'not really destructing' when you don't close the database connection that isn't open in your destructor? Of course not. This is basically the same thing. You're still destructing, it's just that the state the object is in doesn't meet much work. – Omnifarious Jun 11 '11 at 19:00
Why not let the move constructor do some cleanup (if it is actually necessary) so the destructor is left with the real destruction. In my opinion this would fit much better. Because we speak of the same object a double destruction might not reasonable. Your example with complex objects is a thing i try to avoid using techniques like RAII and DI. – mazatwork Jun 11 '11 at 19:56
@matzawork: Well, that's what your move constructor is doing. Cleaning up your object so the destructor doesn't have any work to do. I don't understand the problem. – Omnifarious Jun 11 '11 at 21:53
feedback

This is why you should not declare said member variables const. Const member variables usually serve no purpose. If you don't want users to mutate the FILE*, then don't provide them with functions to do that, and if you want to stop yourself from mutating it by accident, then mark your functions const. However, do not make member variables themselves const- because then you run into fun when you start to use move or copy semantics.

link|improve this answer
1  
Const member variables are useful like references are. Often you want to hold a value and you know that you won't change it, which might allow some optimizations by the compiler. Marking the methods as const will work only as long as i do not have some mutable variables. – mazatwork Jun 11 '11 at 17:53
feedback

The typical way to implement a move constructor is to zero out or otherwise invalidate the members of the instance being moved (see MSDN for a simple example). Therefore I would say just don't use const here as it is incompatible with the goals of move semantics.

link|improve this answer
feedback

Reference counting is standard approach that solves your problem. Consider adding reference counting to your class; either manually, or using existing tools like boost shared_ptr.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.