gpt4 book ai didi

c++ - 如何导致 bad_alloc

转载 作者:行者123 更新时间:2023-11-30 03:48:53 28 4
gpt4 key购买 nike

我必须为我的单元测试导致 bad_alloc(基本上,为了 100% 的代码覆盖率,我无法更改某些函数)。我该怎么办?
这是我的代码示例。我必须在这里的某个地方引起 bad_alloc。

bool insert(const Value& v) {
Value * new_value;
try {
new_value = new Value;
}
catch (std::bad_alloc& ba){
std::cerr << "bad_alloc caught: " << ba.what() << std::endl;
return false;
}
//...
//working with new_value
//...
return true;
};

最佳答案

您可以利用 overloading class-specific operator new 的可能性:

#include <stdexcept>
#include <iostream>

#define TESTING

#ifdef TESTING
struct ThrowingBadAlloc
{
static void* operator new(std::size_t sz)
{
throw std::bad_alloc();
}
};
#endif

struct Value
#ifdef TESTING
: ThrowingBadAlloc
#endif
{
};

bool insert(const Value& v) {
Value * new_value;
try {
new_value = new Value;
}
catch (std::bad_alloc& ba){
std::cerr << "bad_alloc caught: " << ba.what() << std::endl;
return false;
}
//...
//working with new_value
//...
return true;
};

int main()
{
insert(Value());
}

关于c++ - 如何导致 bad_alloc,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32935577/

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