gpt4 book ai didi

c++ - 如何捕获 substr 异常?

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:06:50 24 4
gpt4 key购买 nike

我正在使用 substr 来生成子字符串。我如何捕获 substr 异常?例如:

terminate called after throwing an instance of 'std::out_of_range'

最佳答案

像这样:

try
{
/// use substr
}
catch( std::out_of_range& exception )
{
// print out an error, and fail, or restart if appropriate.
}

关于c++ - 如何捕获 substr 异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6033076/

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