* Protocol(通信协议) Protocol,是asio在网络编程方面最重要的一个concept.在第一章中的levelX类图中可以看到,所有提供网络相关功能的服务和I/O对象都需要Protocol来确定一些细节. Protocol的约束摘要如下: class protocol { public: /// Obtain an identifier for the type of the protocol. int type() const; /// Obtain an identifier…
意义 当compressed_pair的某一个模板参数为一个空类的时候将对其进行“空基类优化”,这样可以使得compressed_pair占用的空间比std::pair的更小. 参考如下代码: #include <iostream> using namespace std; #include <boost/compressed_pair.hpp> class A{}; class B{}; int main() { cout<< sizeof( std::pair<…