2026/4/1 code

CPP-Primer-Chapter06

C++ Primer 语句

#coding

goto语句

goto label; // 跳转到label标签处
label:
// 这里是label标签处的代码

try块与异常处理

try {
    // 可能抛出异常的代码
} catch (const std::exception& e) {
    // 处理异常的代码
} catch (...) {
    // 处理所有其他类型异常的代码
}