zoukankan      html  css  js  c++  java
  • C++primer原书中的一个错误(派生类using声明对基类权限的影响)

    在C++primer 第4版的 15章 15.2.5中有以下这样一段提示:
    “注解:派生类能够恢复继承成员的訪问级别,但不能使訪问级别比基类中原来指定的更严格或者更宽松。”
    在vs2010中经过验证。这段话是错误的。详细见下面代码:
    //Base.h
    #pragma once
    #include <iostream>
    using namespace std;
    class Base
    {
    public:
    	Base(void);
    	~Base(void);
    	size_t size()const{return n;}
    protected:
    //private:
    	size_t n;
    };
    

    //Base.cpp
    #include "Base.h"
    
    
    Base::Base(void)
    {
    	n = 100;
    }
    
    
    Base::~Base(void)
    {
    }

    //Derived.h
    #pragma once
    #include "base.h"
    class Derived :
    	private Base
    {
    public:
    	Derived(void);
    	~Derived(void);
    	using Base::size;
    	using Base::n;
    };

    //Derived.cpp
    #include "Derived.h"
    
    Derived::Derived(void)
    {
    }
    
    Derived::~Derived(void)
    {
    }

    //main.cpp
    #include "Base.h"
    #include "Derived.h"
    #include <iostream>
    using namespace std;
    
    void main()
    {
    	Derived XX;
    	Base YY;
    	cout<<XX.size()<<endl;
    	cout<<XX.n<<endl;
    }


    这段程序是能够正常执行没有不论什么错误的。可是基类Base的成员n权限是protected。在派生类中用using将其提权到了public,这就证明了原书中的那段话是错误的。



    可是当我把Base类的protected 成员 n权限改成private的时候却出现了错误,因此推測:仅仅有子类对成员具有訪问权限的时候才干改变成员的訪问级别。


    后来在http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2540.htm看到这样一段话:
    The access rules for inheriting constructors are specified in 12.9 class.inh-ctor; otherwise all All instances of the name mentioned in a using-declaration shall be accessible. In particular, if a derived class uses a using-declaration to access a member of a base class, the member name shall be accessible. If the name is that of an overloaded member function, then all functions named shall be accessible. The base class members mentioned by a using-declaration shall be visible in the scope of at least one of the direct base classes of the class where the using-declaration is specified. ...


    结果证明我的推測是正确的。

  • 相关阅读:
    Django基础
    Web框架
    JQuery
    16 Javascript
    axios+qs传值序列化时出现数组形式我们该如何修改呢?
    MyBatis 对象中含有对象的查询
    MyBatis 新增获取自增主键的小坑
    List、Set、Map
    事务的隔离级别
    mybatis配置中文参考文档
  • 原文地址:https://www.cnblogs.com/lcchuguo/p/5113303.html
Copyright © 2011-2022 走看看