摘要:
ISO C++ 标准展示了作为第三个参数传递给 std::sort() 函数的简单 lambda: 1 #include <algorithm> 2 #include <cmath> 3 4 void abssort(float* x, unsigned n) { 5 std::sort(x, x 阅读全文
摘要:
netstat 查看Linux中网络系统状态信息 1. 语法 netstat [选项] 选项: -a或--all #显示所有连线中的Socket; -A<网络类型>或--<网络类型> #列出该网络类型连线中的相关地址; -c或--continuous #持续列出网络状态; -C或--cache #显 阅读全文