摘要: 最近在看《深度探索C++对象模型》这本书,作者是Lippman 计算机界的巨人,我个人认为从第四章开始阅读是最佳的。注:为了方便查看笔记的标题为图书的标题,内容为本人对其的理解以及一些心得。 The Semantics of Function C++中函数无非就是类的成员函数,普通函数,然后加上各种 阅读全文
posted @ 2022-04-25 15:33 搞事特工 阅读(99) 评论(1) 推荐(1)
摘要: 802.11ac 5GHz WiFi学习笔记 https://github.com/emoacht/ManagedNativeWifi.git 802.11管理方式 工作站扫描 网络参数 BssType(independent,infrastructure或both) 网络类型 BSSID(indi 阅读全文
posted @ 2023-02-08 14:51 搞事特工 阅读(145) 评论(0) 推荐(0)
摘要: CString GetSysVersion(){ CString vname ; SYSTEM_INFO info; GetSystemInfo(&info); OSVERSIONINFOEX os; os.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEX); 阅读全文
posted @ 2022-04-25 16:48 搞事特工 阅读(144) 评论(0) 推荐(0)
摘要: wchar_t buf[0x1000]; wsprintf(buf, L"/select, %s", fn.c_str()); ShellExecute(0, L"open", L"explorer.exe", buf, 0, SW_SHOWNORMAL); ShellExecute更多用法可以参考 阅读全文
posted @ 2022-04-25 16:42 搞事特工 阅读(41) 评论(0) 推荐(1)