我在为模板类定义函数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;
这是我的任务,所以不要判断这样做的方式,因为这是我老师的选择,我希望我的问题相当全面。
答案 0 :(得分:2)
您遇到的问题是您尝试将max()
函数返回的临时值绑定到输出运算符的非const引用。
最干净的解决方案是将输出运算符声明为:
friend ostream &operator<<(ostream& out, const NSizeN& y)
和您的output
功能为
void output(ostream& out) const
注意,我还删除了output
函数的未使用的第二个参数。 const引用可以绑定到l值和r值,因此它也适用于max()
函数返回的临时值。
修改强>
作为@ n.m.指出,您也不使用实际传递给operator <<
的流,只使用std::cout
。实现它的正确方法是简单地使用流(在您的情况下,只需将cout << ...
替换为out << ...
函数中的output
。这将允许诸如std::cerr << std::numeric_limits<NSizeN<3> >::max();
之类的语句按计划工作。