我有一个通用数组类,logic_error
如果它与非原始类型一起使用,它会抛出一个。
模板类:
#include <string>
#include <sstream>
#include <iostream>
using namespace std;
#define NULL_ELEMENT ((T)NULL)
template<class T> class Array
{
public:
Array(const int size)
{
this->elements[size];
this->size = size;
::fill_n(elements, size, NULL_ELEMENT); /* 1 */
}
// Output of the array
string toString()
{
int i=0;
stringstream ss;
ss << "Array{ ";
for( ; i<size-1; i++ )
{
ss << elements[i] << ", ";
}
ss << elements[i] << " }";
return ss.str();
}
// ...
private:
int size;
T elements[];
};
测试代码:
工作(使用原始类型):
Array<int> arr(5);
cout << arr.toString() << endl;
数组填充0
:Array{ 0, 0, 0, 0, 0 }
失败(使用非原始类型):
Array<string> arr(size); // <-- Exception thrown here
cout << arr.toString() << endl;
抛出异常:
terminate called after throwing an instance of 'std::logic_error'
what(): basic_string::_S_construct null not valid
这发生在Array
课堂上,当::fill_()
被称为 ( /* 1 */
) 时。
我想用类型的 Null-Element 填充整个数组T
(如果是 int 或NULL
if 指针等,则为 0) - 而不遍历每个元素。memset()
这不是一个好的解决方案,不是吗?