从非成员模板函数访问私有内部 class 类型
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
我明白了
Error 1 error C2248: 'Outer::Inner' : cannot access private struct declared in class 'Outer'
使用 Visual Studio 2013 更新 4。因此,这是您的编译器中的问题。
考虑以下代码:
#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
我明白了
Error 1 error C2248: 'Outer::Inner' : cannot access private struct declared in class 'Outer'
使用 Visual Studio 2013 更新 4。因此,这是您的编译器中的问题。