Once you get through that terrifying factual and accepting that,then every place is the center of the universe,and every moment is the most important moment and everything is the meaning of life
摘要:
go get 加 -u 和不加 -u 参数的区别 如题,区别如下: 加上它可以利用网络来更新已有的代码包及其依赖包。如果已经下载过一个代码包,但是这个代码包又有更新了,那么这时候可以直接用 -u 标记来更新本地的对应的代码包。如果不加这个 -u 标记,执行 go get 一个已有的代码包,会发现命令 阅读全文
摘要:
C++ 报错 'gcd' was not declared in this scope 最近想用gcd(a, b)计算a和b的最大公约数,结果遇到如下错误: [Error] 'gcd' was not declared in this scope 解决方法 用的时候不要忘记了__ 示例: #incl 阅读全文