摘要:
常见用法示例 变量申明 const declaration //E0137: expression must be a modifiable lvalue //E0144: a value of type "const int *" cannot be used to initialize an e 阅读全文
posted @ 2021-02-07 16:32
Er_HU
阅读(158)
评论(0)
推荐(0)
|
摘要:
常见用法示例 变量申明 const declaration //E0137: expression must be a modifiable lvalue //E0144: a value of type "const int *" cannot be used to initialize an e 阅读全文
posted @ 2021-02-07 16:32
Er_HU
阅读(158)
评论(0)
推荐(0)
摘要:
要点回顾 此部分方便知识点快速回顾,首次阅读请从引言部分开始。 noexcept(true) 或者 noexcept 表示函数不会抛出或者传递异常,如果函数发生异常,将调用 std::terminate 立即终止程序。 noexcept(false) or 或者不使用 noexcept (析构函数或 阅读全文
posted @ 2021-02-07 14:09
Er_HU
阅读(796)
评论(0)
推荐(0)
|