首页 > 编程语言 > 详细

《C++ 标准库》读书笔记 - 第二章 Introduction to C++ and the Standard Library

时间:2015-03-02 18:23:40      阅读:244      评论:0      收藏:0      [点我收藏+]

1. History of the C++ Standards

1.1 History of the C++ Standards

C++98 -> C++03 -> TR1 -> C++11 -> C++14(书中没有,貌似是最新标准)

1.2 Common Questions about the C++11 Standard

1. 不同组件有不同的设计思想:

  String - 安全

  STL - 不安全

1.3 Compatibility between C++98 and C++11

1. 可通过定义宏

1 #define __cplusplus 201103L

使在编译不同版本的C++程序时引入C++11的新特性

2. 用C++11的编译器编译包括库在内的C++98程序通常是没问题的,但是使用C++11连接已经用C++98编译好的库可能会失败

2. Complexity and Big-O Notation

《C++ 标准库》读书笔记 - 第二章 Introduction to C++ and the Standard Library

原文:http://www.cnblogs.com/Azurewing/p/4309156.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!