摘要:
Const 限定符 作用 定义一个不可改变的常量,但可初始化,给其他变量赋值 如 const int bufSize=512; int i=1; const int j=i; int k=j; 仅在文件内生效 避免重复定义,默认const变量仅在本文件内生效. 若需在多个文件间使用,可以加上exte 阅读全文
摘要:
报错 /usr/lib/python3/dist-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip an 阅读全文