我正在尝试测试访问字符串中的元素是否超出范围。我知道如何捕捉(std::out_of_range) 但我想做的是 if(out_of_range) 示例:
string test;
int a;
test="123456789";
if(test.at(9)==out_of_range) //this isnt proper code but this is what im trying to accomplish
{
a=0;}
else
a=1;
我正在用 C++ VS10 编程
我正在尝试测试访问字符串中的元素是否超出范围。我知道如何捕捉(std::out_of_range) 但我想做的是 if(out_of_range) 示例:
string test;
int a;
test="123456789";
if(test.at(9)==out_of_range) //this isnt proper code but this is what im trying to accomplish
{
a=0;}
else
a=1;
我正在用 C++ VS10 编程