0

好吧,这可能是一个愚蠢的问题,但我还是会继续问。

所以,我想知道,与 std::string 使用相关的所有可能错误是什么?我知道一些,例如访问 char 的位置大于各种 std::string 函数中的 std::string 大小。

在编程时我应该记住哪些错误并进行检查?

还有另一种方法可以有效地进行以下操作吗?

std::string s("some string.");

int i = s.find ( "." );


if (  i != std::string::npos    &&  i + 3 < s.length (  )  ) // <<== this check is what I am talking about
    s.erase ( i + 3 );

我有一个程序,它需要数百次这样的检查,所以我想知道,每次都有另一种方法来执行 if( some_condition )。

4

2 回答 2

2

您不需要列出整个班级的每个错误案例;只需查找您使用的函数的文档,其中通常列出了先决条件。

例如,cppreference.com 上的页面std::string::erase

于 2013-08-12T07:59:38.653 回答
0

如果i大于字符串长度,out_of_range则抛出异常

参考:- std::string::erase

所以你总能抓住它!

std::string s("some string.");
int i = s.find ( "." );

if (i != std::string::npos)
try 
{
   s.erase ( i + 3 );
}
catch (const std::out_of_range& err) 
{
  std::cerr << "Out of Range error: " << err.what() << std::endl;
}
于 2013-08-12T08:06:13.503 回答