0

以下のコードでは、int 値とオブジェクトの乗算可変個引数テンプレートを実行しています。すべてのプリミティブ型で機能します。2つのオブジェクトのみでも機能します。しかし、乗算に 2 つ以上の引数オブ​​ジェクトを使用すると、コードがコンパイルされません。

multiply(1, 2, 3, 4, 5, 6) //works correcyly
multiply( A(1), B(1))      //works correctly 
multiply( A(1), B(1), B(1) );   //compile time Error 
multiply( A(1), B(1), B(1), B(1) );   //compile time Error 

2つ以上のオブジェクトの乗算でこの問題を解決するにはどうすればよいですか? 乗算は左結合として行われます。

#include <iostream>
#include <assert.h>
#include <cstddef>
#include <typeinfo>
#include <stdlib.h>

using namespace std;

template <typename...> struct MulTs;

template <typename T1> struct MulTs<T1> {
    typedef T1 type;
};

template <typename T1, typename... Ts>
struct MulTs<T1, Ts...> {
    static typename MulTs < Ts...>::type makeTs(); //a
    static T1 makeT1(); //b
    typedef decltype(makeT1() * makeTs()) type; //c
};

template <typename T>
T multiply(const T& v) {
    return v;
}

template <typename T1, typename... Ts>
auto multiply(const T1& v1, const Ts&... rest) -> typename MulTs<T1,     Ts...>::type //instead of the decltype
{
    return v1 * multiply(rest...);
}

struct B;
struct A {
    friend A operator*(const A &, const B &);
    friend ostream & operator<<(ostream &os, const A &a);
    A(int val = 0) : i(val) {}
    private:
    const int i;
};
struct B {
    friend A operator*(const A &a, const B &b) {
        return A(a.i * b.i);
    }
    B(int val = 0) : i(val) {}
private:
    const int i;
};

ostream &operator<<(ostream &os, const A &a) {
    return os << a.i;
}

int main() {
    cout << multiply(1, 2, 3, 4, 5, 6) <<endl;//works correcyly
    cout << multiply( A(1), B(1))<<endl;      //works correctly 
    //cout << multiply( A(1), B(1), B(1) );   //compile time Error 
}
4

1 に答える 1

2
multiply( A(1), B(1), B(1) )

に展開しA(1) * multiply(B(1), B(1))ます。オーバーロードしていないためoperator *(const B&, const B&)、コンパイル エラーが発生しています。

于 2019-12-09T12:26:01.920 に答える