例如:Switch Maven repository ‘maven(http://developer.huawei.com/repo/)’ to redirect to a secure protocol
在库链接上方添加配置代码:allowInsecureProtocol true
1.关键字 ①案例 const
int a 10;
const int b 20; // int const b 20; 常变量
int *pa &a; //合法
//int *pb &b; //不合法
//*pb 78;
int const *ppb &b; //合法如果想保存常变量的地址,需要对指针加以限制。
【指针常量】int const *p; /…