时尚小蝴蝶

文章
4
资源
0
加入时间
2年10月17天

搭建本地HTTPS测试环境

生成证书使用openssl生成密钥privkey.pem:openssl genrsa -out privkey.pem 1024/2038使用密钥生成证书server.pem: openssl req -new -x509 -key privkey.pem -out server.pem -days 365证书信息可以随便填或者留空,只有Common Name要根据你...

利用swap函数理解值传递、地址传递

#include <iostream>using namespace std;int a = 1, b = 2;void swap(int a, int b);//pass by valuevoid swap(int a, int b){ int temp; temp = a; a = b; b = temp; cout << "pass by value: a" << a <&