摘要:
1 #include 2 #include 3 using namespace std; 4 class String { 5 public: 6 String (const char* str = NULL) { 7 m_str = new char[strlen(str?str:"")+1]; 8 strcpy (m_str, st... 阅读全文
摘要:
同步(synchronous) IO和异步(asynchronous) IO,阻塞(blocking) IO和非阻塞(non-blocking)IO分别是什么,到底有什么区别?这个问题其实不同的人给出的答案都可能不同,比如wiki,就认为asynchronous IO和non-blocking IO 阅读全文