unsigned short* myClass::get_last(size_t _last) const
{
if (_last == 0) _last = last.size();
if (_last <= last.size())
{
unsigned short* temp = new unsigned short [_last] {};
while (_last > 0) temp[_last] = last[last.size() - _last--]; //I get a warning HERE
return temp;
}
throw std::runtime_error("Error!");
}
它说:
写入“temp”时缓冲区溢出:可写大小为“_last*2”字节,但可能会写入“_last”字节。
这是什么意思?我确定_last不大于temp.size()因为if
那我该怎么办?
它在运行时完美运行,但我讨厌有警告让其他用户或我将来更难以理解我的代码。
编辑: _last是用户在运行时给出的参数,因此它最终可能具有任何值,但如果他的值超出范围,则会出现异常(在另一个函数中管理)。
我在标题中提到的向量是最后一个,它是myClass的成员。
我知道数组的元素从0到_last - 1,这就是为什么我在第一次使用它之前递减_last (你可能知道赋值关联性是从右到左的)。
我希望我回答了你所有的评论;)