gpt4 book ai didi

c++ - 为模板类定义 numeric_limits max 函数

转载 作者:搜寻专家 更新时间:2023-10-31 02:19:15 25 4
gpt4 key购买 nike

我在为模板类定义函数 max 时遇到问题。在这门课中,我们将数字保存为不是简单的整数,而是一些数字系统中的数字 vector 。通过定义 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)

这就是我在 main 中尝试做的:

    std::cout << std::numeric_limits<NSizeN<3> >::max() << endl;

这是我的作业,所以不要评判这样做的方式,因为这是我的老师选择,我希望我能相当全面地介绍我的问题。

最佳答案

您面临的问题是您尝试绑定(bind)由 max() 返回的临时文件函数到输出运算符的非常量引用。

最简洁的解决方案是将输出运算符声明为:

friend ostream &operator<<(ostream& out, const NSizeN& y)

和你的output作为

void output(ostream& out) const

请注意,我还删除了 output 未使用的第二个参数功能。 const 引用可以绑定(bind)到左值和右值,因此它适用于 max() 返回的临时值功能也一样。

编辑作为@n.m。指出,您也不使用实际传递给 operator << 的流只需使用 std::cout .实现它的正确方法是简单地使用流(在您的情况下,只需在 cout << ... 函数中将 out << ... 替换为 output。这将使 std::cerr << std::numeric_limits<NSizeN<3> >::max(); 等语句按预期工作。

关于c++ - 为模板类定义 numeric_limits max 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33722204/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com