类方法的结果类型

Result type of a class method?

本文关键字:类型 结果 类方法      更新时间:2023-10-16

考虑以下示例:

#include <iostream>
#include <numeric>
#include <array>
#include <type_traits>
// Array: I cannot modify this class
template<typename T, unsigned int N>
class Array
{
    public:
        Array() : _data() {std::iota(std::begin(_data), std::end(_data), 0);}
        inline T& operator[](unsigned int i) {return _data[i];}
        inline const T& operator[](unsigned int i) const {return _data[i];}
        static constexpr unsigned int size() {return N;}
    protected:
        T _data[N];
};
// Test function: How to get the type returned by T::operator[](unsigned int) ?
template<typename T>
typename std::result_of<T::operator[](const unsigned int)>::type f(const T& x)
{
    return x[0];
}
// Main
int main(int argc, char* argv[])
{
    Array<double, 5> x;
    std::array<double, 5> y = {{0}};
    for (unsigned int i = 0; i < x.size(); ++i) std::cout<<x[i]<<std::endl;
    for (unsigned int i = 0; i < y.size(); ++i) std::cout<<y[i]<<std::endl;
    std::cout<<f(x)<<std::endl;
    std::cout<<f(y)<<std::endl;
    return 0;
}

是否有办法得到T::operator[](unsigned int)返回的类型?

目前,g++表示:argument in position '1' is not a potential constant expression

最简单的方法是使用尾随返回类型,它允许您访问函数参数,以及decltype,它允许您获得表达式的类型。

template<typename T>
auto f(const T& x) -> decltype(x[0])
{
    return x[0];
}

您所需要的只是使用语法auto foo(...) -> T的新样式的函数定义。看