其他分享
首页 > 其他分享> > c – CRTP:具有基于派生的参数的函数

c – CRTP:具有基于派生的参数的函数

作者:互联网

这是我正在尝试做的最小版本:

template<typename D>
struct Base {

        void common() {
                // ... do something ...
                static_cast<D *>(this)->impl();
                // ... do something ...
        }

        void common_with_arg(typename D::Arg arg) {
                // ... do something ...
                static_cast<D *>(this)->impl_with_arg(arg);
                // ... do something more ...
        }
};

struct Derived : Base<Derived> {
        void impl() { }

        using Arg = int;
        void impl_with_arg(Arg arg) { }

};

Base :: common()和Derived :: impl()工作正常(如预期的那样).
但是,Base :: common_with_arg()和Derived :: impl_with_arg()不会.

以gcc为例,我收到以下错误:

1.cc: In instantiation of ‘struct Base<Derived>’:
1.cc:18:18:   required from here
1.cc:11:7: error: invalid use of incomplete type ‘struct Derived’
  void common_with_arg(typename D::Arg arg) {
       ^~~~~~~~~~~~~~~
1.cc:18:8: note: forward declaration of ‘struct Derived’
 struct Derived : Base<Derived> {

直观地(不了解有关模板实例化的所有细节),这似乎是一个明智的错误.还有另一种方法可以实现相同的功能吗?

解决方法:

void common_with_arg(typename D::Arg arg)
//                            ^^^^^^

你不能在这里访问D :: Arg,因为需要Derived的定义.但是这个定义永远不可用,因为Base模板在这里被实例化了……

struct Derived : Base<Derived> { 
//               ^^^^^^^^^^^^^

…… Derived还没有完全定义.

一种可能的解决方法是使common_with_arg成为一个函数模板:

template <typename T>
void common_with_arg(T&& arg) {
        // ... do something ...
        static_cast<D *>(this)->impl_with_arg(std::forward<T>(arg));
        // ... do something more ...
}

example on wandbox

如果您确实需要Arg类型别名,请阅读以下问题:“C++ static polymorphism (CRTP) and using typedefs from derived classes”.

标签:crtp,c
来源: https://codeday.me/bug/20190828/1754341.html