我在为模板类定义函数 max 时遇到问题。在这个类中,我们不是将数字保留为简单的整数,而是在某些数字系统中作为数字向量。并且通过定义 numeric_limits 我需要返回基于定义的数字系统的最大数字的表示。
当我尝试返回具有最大表示的类时,我遇到了很多错误,但它在返回整数时有效。
我的模板类:
template<int n,typename b_type=unsigned int,typename l_type=unsigned long long,long_type base=bases(DEC)>
class NSizeN
{
public:
int a_size = 0;
vector <b_type> place_number_vector; // number stored in the vector
NSizeN(int a){ //constructor
do {
place_number_vector.push_back(a % base);
a /= base;
a_size ++;
} while(a != 0);
}
void output(ostream& out, NSizeN& y)
{
for(int i=a_size - 1;i >= 0;i--)
{
cout << (l_type)place_number_vector[i] << ":";
}
}
friend ostream &operator<<(ostream& out, NSizeN& y)
{
y.output(out, y);
return out << endl;
}
}
在 .h 文件的末尾我有这个:
namespace std{
template<int n,typename b_type,typename l_type,long_type base>
class numeric_limits < NSizeN< n, b_type, l_type, base> >{
public :
static NSizeN< n, b_type, l_type, base> max(){
NSizeN< n, b_type, l_type, base> c(base -1);
return c;
}
}
我已经用 const 和 constexpr 试过了,但它不起作用。我不知道如何摆脱这个错误:
error: cannot bind 'std::ostream {aka std::basic_ostream<char>}' lvalue to'std::basic_ostream<char>&&'
std::cout << std::numeric_limits<NSizeN<3> >::max() << endl;
error: initializing argument 1 of 'std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&&, const _Tp&) [with _CharT = char; _Traits = std::char_traits<char>; _Tp = NSizeN<3>]'
operator<<(basic_ostream<_CharT, _Traits>&& __os, const _Tp& __x)
这就是我主要尝试做的事情:
std::cout << std::numeric_limits<NSizeN<3> >::max() << endl;
这是我的作业,所以不要评判这样做的方式,因为这是我老师的选择,我希望我能相当全面地提出我的问题。