2020年1月13日
摘要: 1原文: https://resources.sei.cmu.edu/downloads/secure-coding/assets/sei-cert-cpp-coding-standard-2016-v01.pdf 说明: Noncompliant Code Example(NCE) :不符合安全编 阅读全文
posted @ 2020-01-13 20:15 SunnyPoem 阅读(724) 评论(0) 推荐(0) 编辑
摘要: noexcept 异常说明 void recoup(int) noexcept; //recoup 不会抛出异常 void recoup(int) noexcept(true); void recoup(int) throw(); //早期版本 void alloc(int); //可能抛出异常 v 阅读全文
posted @ 2020-01-13 20:13 SunnyPoem 阅读(212) 评论(0) 推荐(0) 编辑