繁体   English   中英

从非成员模板函数访问私有内部类类型

[英]Accessing private inner class type from non-member template function

考虑以下代码:

#include <iostream>
using namespace std;

class Outer {
    struct Inner {
        int num;    
    };

public:
 static Inner GetInner() {
    return Inner{-101};
}
};

// void func1(Outer::Inner inner) {  // [1] Does not compile as expected
//  cout << inner.num <<endl;
//}

template <typename Dummy>
void func2(Outer::Inner inner, Dummy = Dummy()) {
    cout << inner.num << endl;
}


int main() {
    // func1(Outer::GetInner()); // [2] does not compile as expected 
    func2<int>(Outer::GetInner()); // [3] How does this compile? 
                                   // Outer::Inner should not be accessible
                                   // from outside Outer
    return 0;
}

我如何在非成员函数func2使用类型为Outer::Inner的参数,这是一个私有类型? 当我尝试将其与以下错误消息一起使用时, func1正确地抱怨:

prog.cpp: In function 'void func1(Outer::Inner)':
prog.cpp:5:9: error: 'struct Outer::Inner' is private
  struct Inner {
         ^
prog.cpp:15:19: error: within this context
 void func1(Outer::Inner inner) {
               ^

我在ubuntu上使用g ++ 4.8.2,但我也在gcc-4.9.2(在www.ideone.com上)上看到了

您可以在此处尝试代码: Ideone

我懂了

错误1错误C2248:“ Outer :: Inner”:无法访问在“ Outer”类中声明的私有结构

使用Visual Studio 2013更新4。嗯,这是您的编译器中的问题。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM