C++渣渣,遇到这个题目,请问 Dan(std::function<Niao* ()> createNiao)
是什么用法?
还有应该怎么标志,才能知道产生 Egg 的是哪个类( Niao 还是 Yazi )?
#include <stdexcept>
#include <functional>
class Dan;
class Niao
{
public:
virtual ~Niao() {};
virtual Dan* lay() = 0;
};
class Dan
{
public:
Dan(std::function<Niao* ()> createNiao)
{
throw std::logic_error("Waiting to be implemented");
}
Niao* hatch()
{
throw std::logic_error("Waiting to be implemented");
}
};
class Yazi : public Niao
{
public:
Yazi()
{
}
Dan* lay()
{
throw std::logic_error("Waiting to be implemented");
}
};
#ifndef RunTests
int main()
{
Niao* yazi = new Yazi();
Dan* dan1 = yazi->lay();
Niao* childYazi1 = dan1->hatch();
}
#endif
1
across 2020-12-01 00:52:31 +08:00 1
简单说 std::function 就是类型化的 C++版本函数指针。Niao* () 是函数类型声明,无入参,有返回值。Dan 的构造函数就是设定一个回调而已,看这意思就是 hatch 的时候调用下 createNiao 吧。
看了半天才发现是拼音···· |
2
PepperEgg 2020-12-01 08:58:06 +08:00
拼音英文混合变成啊 XD
|
3
zhongrs232 2020-12-01 15:28:23 +08:00
看代码莫名喜感哈哈哈哈
|