正如在这里所回答的:如何将不完整类型用作向量的模板参数?在实例化模板组件时使用不完整类型作为模板参数可能导致未定义的行为.但是当我们只有指向不完全类型的模板组件的指针/引用作为参数时,该规则是否成立?在这种情况下,实例也会发生吗?
例如:
// SomeAlgoInterface.hpp #includestruct Result; // forward declaration class SomeAlgoInterface { public: virtual ~SomeAlgoInterface() = default; public: // the following line is definitely OK, ... virtual void f1(const Result & result) = 0; // ... but I'm not quite sure about the following one virtual void f2(const std::vector & results) = 0; };
换句话说,上面的代码是否有效?