vote up 1 vote down star

Hi everyone,

I have a small problem with my compiler (VC++ 6.0). In my opinion, such a code should cause error;

class Base
{
    private:
        typedef int T;
};

class Derived : private Base // Here the Base class can be inherited publicly as well. It does not play any role
{
    public:
        T z;
};



int main()
{
    Derived obj;
    obj.z = 7;
    return 0;
}

This code snippet is compiled and run under VC++ 6.0 without any problem.

Regarding SW-Design, this code is not perfect. None of the class member members should be declared as public. But I am not interested in this aspect.

My problem is with typedef. The typedef is declared in Base class as private. From my point of C++ understanding, this typedef must not be visible either to Derived class or to main() function. But both see them perfectly.

Does anybody have an explanation to this phenomenon?

Thanks in advance

Necip

flag
I tried to compile it with VS 2008 - can not access private typedef declared in class Base. It is interesting why it is ok in VS 6 – Svetlozar Angelov Aug 31 at 7:20
2  
VC6 has many issues of non conformance with the standard. – 1800 INFORMATION Aug 31 at 7:30
@Svetlozar, VC++ 6.0 is old, even predates the standard publication IIRC. As usual, non conformance reasons ranges from anachronisms -- the language have changed -- to bugs passing by extensions and the result of different resolutions than the standard blessed one for issues. – AProgrammer Aug 31 at 7:33
Nevertheless, that is not my decision to work with VC++ 6.0. It is unfortunately standard tool in our company and in spite of its non-conformances, I have to program on it. – – Necip Aug 31 at 8:52
1  
I would seek to change company if i were forced to work with that an old compiler, frankly – Johannes Schaub - litb Aug 31 at 12:14

1 Answer

vote up 6 vote down

This behavior is a non conformance in VC++6.0, you should have got an error when defining Derived::z. (Excepted if you have business reasons to use it, there are other choices technically preferable to VC++6.0 which is old).

link|flag

Your Answer

Get an OpenID
or

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