vote up 4 vote down star
1
class Temp
{
private:
    ~Temp() {}
    friend class Final;
};

class Final : virtual public Temp
{
public:
     void fun()
     {
         cout<<"In base";
     }
};

class Derived : public Final
{
};

void main()
{
    Derived obj;
    obj.fun();
}

The above code tries to achieve non-inheritable class (final). But using above code the object of derived can still be created, why?

The desired functionality is achieved only if ctor made private, my question is why it is not achievable in case of dtor private?

flag

57% accept rate
1  
Somebody please fix the formatting; it's really difficult to read. – Josh Matthews Sep 2 at 8:35
1  
Looks like defect with Visual studio. – learner Sep 2 at 9:17
this post: cpptalk.wordpress.com/2009/09/… explains and shows how to create a final (frozen) class in c++. You are more than welcome to have a look. – rmn Sep 12 at 12:11

5 Answers

vote up 5 vote down check

Well, for this program (pleasse provide correct, compilable examples)

#include <iostream>

class Temp
{
private:
    ~Temp() {}
    friend class Final;
};

class Final : virtual public Temp
{
public:
    void fun() { std::cout<<"In base"; }
};

class Derived : public Final {};

int main() {
    Derived obj;
    obj.fun();
}

Comeau Online says

Comeau C/C++ 4.3.10.1 (Oct  6 2008 11:28:09) for ONLINE_EVALUATION_BETA2
Copyright 1988-2008 Comeau Computing.  All rights reserved.
MODE:strict errors C++ C++0x_extensions

"ComeauTest.c", line 16: error: "Temp::~Temp()" (declared at line 6) is inaccessible
  class Derived : public Final {
                         ^
          detected during implicit generation of "Derived::Derived()" at line
                    21

"ComeauTest.c", line 16: error: "Temp::~Temp()" (declared at line 6) is inaccessible
  class Derived : public Final {
        ^
          detected during implicit generation of "Derived::~Derived()" at line
                    21

2 errors detected in the compilation of "ComeauTest.c".

Since, when in doubt, I always trust como (I have only ever found one error in it, but many in other compilers), I suppose VC9 (which accepts the code) is in error. (From that 'void main()' I suppose you use VC, too.)

link|flag
Yes i used VC.. Thanks for pointer, I think i will try will gcc also. – learner Sep 2 at 8:42
+1 gcc also complains about that code. How can VS destroy Derived not having access to Temp, what is required having virtual inheritance in Final???? – fnieto Sep 2 at 9:49
2  
@frieto: Access protection is a pure compiler front end feature. There's no magic to it. Once the front end accepts the code, the back end simply injects a call to the function that is the dtor. – sbi Sep 2 at 10:37
@sbi: Ohh yes, but its a basic rule. Is like they are not taking into account the virtual inheritance to check access permission. – fnieto Sep 2 at 15:13
@frieto: Well, in fact I am saying they are not taking into account the virtual inheritance to check dtor access permission. (They do for the ctor, though.) And the matter is complicated enough that most of us more guessed than knew whether VC is right or wrong. – sbi Sep 2 at 16:57
show 4 more comments
vote up 0 vote down

Ughm, am I missing something:

$ g++ -o inherit inherit.cpp 
inherit.cpp: In constructor ‘Derived::Derived()’:
inherit.cpp:9: error: ‘Temp::~Temp()’ is private
inherit.cpp:21: error: within this context
inherit.cpp: In function ‘int main()’:
inherit.cpp:25: note: synthesized method ‘Derived::Derived()’ first required here 
inherit.cpp: In destructor ‘Derived::~Derived()’:
inherit.cpp:9: error: ‘Temp::~Temp()’ is private
inherit.cpp:21: error: within this context
inherit.cpp: In function ‘int main()’:
inherit.cpp:25: note: synthesized method ‘Derived::~Derived()’ first required here
link|flag
You're wrong. Note that Temp is a virtual base class. It is constructed, and, IMO, also destructed, by the most derived class. – sbi Sep 2 at 8:44
Indeed - and I failed to copy it over properly too :( Anyway, gcc does give me the expected compilation error, see the edited answer above.. – igor Sep 2 at 8:52
Downvote removed -- assuming you will turn the "Ugh" into an actual answer. :) – sbi Sep 2 at 10:34
vote up 0 vote down

The derived class does not call the private destructor of the base class, hence it does not need visibility.

Make your constructors private and only provide a static generator function.

link|flag
1  
He knows that it works then. He asks why it doesn't work when he makes the dtor private, too. – sbi Sep 2 at 8:42
Ok - see my answer after change. – David Allan Finch Sep 2 at 8:50
Actually this is a more interesting question that it initially look. – David Allan Finch Sep 2 at 8:54
2  
@David: Since the derived class calls the ctor, shouldn't it also have to call the dtor? – sbi Sep 2 at 10:33
I am not sure that a constructor or destructor call down. I think that new / delete does that, hence it probably looks at the visibility of only the created class. If you can't create something you can't destroy it. – David Allan Finch Sep 7 at 10:23
vote up -3 vote down

non-inheritable, final, classes do not exist in C++.

link|flag
Yep. This is why he tries to emulate the behavior. – sbi Sep 2 at 8:40
vote up 1 vote down

The C++ FAQ describes different ways to achieve this – but from your question I guess you’ve already read them. ;-)

(Also, main must always return int, never void.)

link|flag
(Removed bogus from my answer.) – Konrad Rudolph Sep 2 at 8:36
2  
Since Derived has to call the ctor of Temp, doesn't it have to call its dtor, too? – sbi Sep 2 at 8:40
@sbi: I thought that different rules applied to the destructor but your Comeau output makes a case for the opposite. I’ll let my answer stand anyway since it references the FAQ and mentions that void isn’t valid on main. Otherwise, your answer seems to nail it. It should be interesting to see how the code compiled by VS behaves, in particular if the destructor of a virtual base class gets called multiple times in multiple inheritance hierarchies. – Konrad Rudolph Sep 2 at 9:05
@Konrad: I also only guessed, but como confirmed my guess, not yours. :) VC accepts my code (I should have written this in my answer. Sorry.) I suppose that's a bug in VC. – sbi Sep 2 at 10:32
@Konrad: I tested that and VC++ do it ok, virtual inheritance works ok. The problem is only in access permission. -1 for saying "Derived doesn’t need to know Temp’s destructor". Why then should he use virtual inheritance? – fnieto Sep 3 at 9:19

Your Answer

Get an OpenID
or

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