摘要:
void swap(int &a, int &b) { a = a^b; b = a^b; a = a^b; } int main() { int a = 5; int b = 3; swap(a, b); cout << a << endl; cout << b << endl; system(" 阅读全文
摘要:
明明已经加了头文件 #include <sys/syscall.h> #include <sched.h> #include <sys/resource.h> 编译还是报错 error: ‘syscall’ was not declared in this scope 参考https://blog. 阅读全文