如何在 C++ 中访问私有嵌套 class?
How to access a private nested class in C++?
我在 CPP 测验中找到一道题。问题是
class secret
{
class hidden{};
public:
template <class K>
string accept(K k) {return (k(*this, hidden()));}
string keyToNextLvl (hidden )const {return ("success!"); }
};
struct SampleSoln
{
template <class pwd>
string operator()(const secret &sc, pwd opwd) const
{ return (sc.keyToNextLvl(opwd)); }
};
int main()
{
secret sc;
cout <<sc.accept(SampleSoln()) << endl; //Prints success
cout <<sc.keyToNextLvl (AnswerKey()) << endl; //Need to provide the implementation of AnswerKey
}
现在我必须直接使用方法 "keyToNextLvl" 访问它。 (我不允许访问 accept 方法 - 问题本身提供了使用 accept 方法访问 keyToNextLvl 的示例解决方案。所以我需要提供 AnswerKey 的实现)
我进行了一些搜索,找到了一些无需使用好友即可访问私有 members/methods 的方法
http://bloglitb.blogspot.in/2010/07/access-to-private-members-thats-easy.html
但是我对上面的问题没有任何想法。
因为它是默认构造的,你可以这样做:
sc.keyToNextLvl ({})
举个例子:
#include<string>
#include<iostream>
class secret
{
class hidden{};
public:
template <class K>
std::string accept(K k) {return (k(*this, hidden()));}
std::string keyToNextLvl (hidden )const {return ("success!"); }
};
int main()
{
secret sc;
std::cout <<sc.keyToNextLvl ({}) << std::endl;
}
您不需要定义 AnswerKey
。
不可见的是class的name,但只要不需要实际使用它的名字就可以构造它。
知道了!
struct AnswerKey
{
template <class T>
operator T ()
{
return T();
}
};
使用模板化转换运算符构造 secret::hidden
对象
我在 CPP 测验中找到一道题。问题是
class secret
{
class hidden{};
public:
template <class K>
string accept(K k) {return (k(*this, hidden()));}
string keyToNextLvl (hidden )const {return ("success!"); }
};
struct SampleSoln
{
template <class pwd>
string operator()(const secret &sc, pwd opwd) const
{ return (sc.keyToNextLvl(opwd)); }
};
int main()
{
secret sc;
cout <<sc.accept(SampleSoln()) << endl; //Prints success
cout <<sc.keyToNextLvl (AnswerKey()) << endl; //Need to provide the implementation of AnswerKey
}
现在我必须直接使用方法 "keyToNextLvl" 访问它。 (我不允许访问 accept 方法 - 问题本身提供了使用 accept 方法访问 keyToNextLvl 的示例解决方案。所以我需要提供 AnswerKey 的实现)
我进行了一些搜索,找到了一些无需使用好友即可访问私有 members/methods 的方法 http://bloglitb.blogspot.in/2010/07/access-to-private-members-thats-easy.html
但是我对上面的问题没有任何想法。
因为它是默认构造的,你可以这样做:
sc.keyToNextLvl ({})
举个例子:
#include<string>
#include<iostream>
class secret
{
class hidden{};
public:
template <class K>
std::string accept(K k) {return (k(*this, hidden()));}
std::string keyToNextLvl (hidden )const {return ("success!"); }
};
int main()
{
secret sc;
std::cout <<sc.keyToNextLvl ({}) << std::endl;
}
您不需要定义 AnswerKey
。
不可见的是class的name,但只要不需要实际使用它的名字就可以构造它。
知道了!
struct AnswerKey
{
template <class T>
operator T ()
{
return T();
}
};
使用模板化转换运算符构造 secret::hidden
对象