01 2019 档案

linux无法安装应用
摘要:需安装flex 和bison 一般需要更新软件源 root权限 下 apt-get update apt-get upgrade 如果出现以下问题,先查看网络是否畅通; ping 192.168.0.1 如果能ping通,再ping www.baidu.com;如果ping不通,可以查看DNS配置 阅读全文

posted @ 2019-01-10 16:09 LazyAngel 阅读(1184) 评论(0) 推荐(0)

linux下修改python版本号
摘要:修改python版本 1.查看已安装版本: /home/user$ whereis python 2.在其 home 目录下创建一个 alias(别名) user@ubuntu:/home/user$ alias python='/usr/bin/python2.7' 3. 打开该用户的 ~/.ba 阅读全文

posted @ 2019-01-04 14:30 LazyAngel 阅读(905) 评论(0) 推荐(0)

c++要点
摘要:@11:39 2018/5/18 1.const: (1).const int* u;和int const* v都表示指向常量的指针。int* const w;才表示指针常量。即const在*左边表示指向常量的指针,const在*右边表示指针常量。也可以理解为const只修饰它左边的东西。 (2). 阅读全文

posted @ 2019-01-04 14:23 LazyAngel 阅读(156) 评论(0) 推荐(0)

导航