noexcept两种使用方式
1 - 做为修饰符
2 - 做为操作符
noexcept 无参数可以认定为noexcept(true)
noexcept(常量表达式) 常量表达式被转换成为bool类型。 noexcept(true), noexcept(false);