上一页 1 ··· 155 156 157 158 159 160 161 162 163 ··· 175 下一页
  2019年3月7日
摘要: 格式是:command >> filefullpath 格式是:DOS命令>>文件名全路径 举例说明: dir *.* >> D:\abc.txt dir *.* > D:\abc.txt >> 代表追加。 > 代表写覆盖。 阅读全文
posted @ 2019-03-07 11:56 一杯明月 阅读(3729) 评论(0) 推荐(0) 编辑
  2019年3月4日
摘要: #include<iostream> #include<iomanip> using namespace std; int main() { enum color_set { red, yellow, blue, white, black }; //声明枚举类型color color_set col 阅读全文
posted @ 2019-03-04 21:52 一杯明月 阅读(740) 评论(0) 推荐(0) 编辑
摘要: 原则:类的成员函数在小括号后大括号前加上 const ,代表不准备改变对象的数据。不加的话代表有可能会改变对象的数据。 1.当常量对象,就是加上const修饰的类的成员去调用常量成员函数时,这表示:对象的初始化数据一定不能改变,常量成员函数说:放心,我不会改变你的初始化数据的,这一切都很好。 2.当 阅读全文
posted @ 2019-03-04 14:55 一杯明月 阅读(579) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/cauchy007/p/4966485.html 阅读全文
posted @ 2019-03-04 10:04 一杯明月 阅读(1038) 评论(0) 推荐(0) 编辑
  2019年3月3日
摘要: 听课笔记: #define _CRT_SECURE_NO_WARNINGS #include<iostream> using namespace std; void fun() { throw 1;//抛出整型异常值 } void fun02() { throw "hello!";//抛出const 阅读全文
posted @ 2019-03-03 15:56 一杯明月 阅读(617) 评论(0) 推荐(0) 编辑
摘要: 听侯捷老师讲课的笔记: string.h头文件: #pragma once class String { public: String(const char* cstr); String(const String& str); String& operator =(const String& str 阅读全文
posted @ 2019-03-03 10:42 一杯明月 阅读(225) 评论(0) 推荐(0) 编辑
  2019年3月2日
摘要: 听课笔记: vecotr.h头文件: #pragma once /*写一个容器vector*/ template<typename T> class Myarray { public: Myarray(); Myarray(int capacity); Myarray(const Myarray<T 阅读全文
posted @ 2019-03-02 21:37 一杯明月 阅读(436) 评论(0) 推荐(0) 编辑
  2019年2月27日
摘要: https://blog.csdn.net/kuaile123/article/details/11024873 阅读全文
posted @ 2019-02-27 12:49 一杯明月 阅读(368) 评论(0) 推荐(0) 编辑
  2019年2月24日
摘要: 解决办法: 1. 在开始菜单,找到“Visual Studio Tools”文件夹中的“VS 2017的开发人员命令提示符 ” 运行。 2. 输入:devenv /Safemode 3. 会以安全模式启动运行,应该不会弹出错误,然后在关闭重新启动看看。 参考链接:https://blog.csdn. 阅读全文
posted @ 2019-02-24 21:52 一杯明月 阅读(3986) 评论(0) 推荐(0) 编辑
  2019年2月20日
摘要: 1.使用cmake的时候,显示cmake不是内部或外部命令,也不是可执行的程序。解决办法参考: https://blog.csdn.net/zmdsjtu/article/details/52296522 2.cmake教程参考:https://www.hahack.com/codes/cmake/ 阅读全文
posted @ 2019-02-20 14:26 一杯明月 阅读(284) 评论(0) 推荐(0) 编辑
上一页 1 ··· 155 156 157 158 159 160 161 162 163 ··· 175 下一页