《Effective Modern C++》读书笔记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《Effective Modern C++》读书笔记相关的知识,希望对你有一定的参考价值。

Item 7: Distinguish between () and {} when creating objects. 

  • equals-sign-plus-braces is equal to braces-only
    • int z{ 0 }; 相当于 int z = { 0 }; 
  • Uniform initialization 使用了{}

      在类定义处初始化变量可以用=或者{},初始化std::automics只能使用()跟{},因此

 

以上是关于《Effective Modern C++》读书笔记的主要内容,如果未能解决你的问题,请参考以下文章

C++学习:Effective Modern C++条款

C++学习:Effective Modern C++条款

Effective Modern C++ 条款28 理解引用折叠

《Effective C++》读书笔记汇总

Effective C++读书笔记

effective c++读书总结