摘要:
Version 0.01:使用 linux API (epoll) 实现一个 echo toy. UNIX 网络编程基础介绍: 个人认为,网络编程的本质还是进程间通信,只是通信区域跨越了一个网络罢了,通信的方式是使用套接字。 重要的数据结构: struct sockaddr_in{ short in 阅读全文
摘要:
Alias(化名) Tempalte (template typedef) template <typename T> using Vec = std::vector<T, MyAlloc<T>>; the term vec<int> coll; is equivalent to std::vect 阅读全文
摘要:
红色 绿色 蓝色 Initializer List An initializer list forces so-called value initialization, which means that even local variables of fundamental types, which 阅读全文