上一页 1 ··· 9 10 11 12 13
摘要: 点快捷键 ctrl + F进行查找与替换在查找框中,按住Alt键不放,再顺序点小键盘的1 0,然后,松开Alt键替换框中,保持为空点“全部替换”就成了 阅读全文
posted @ 2013-07-09 23:15 renhl 阅读(996) 评论(0) 推荐(0) 编辑
摘要: 总共有6个。构造、拷贝构造、析构函数 赋值运算、取址、取址consthttp://blog.sina.com.cn/s/blog_5f76aaf20100cwlj.html 1 class Empty 2 { 3 public: 4 Empty(); // 缺省构造函数 5 Empty( const Empty& ); // 拷贝构造函数 6 ~Empty(); // 析构函数 7 Empty& operator=( const Empty& ); // 赋值运算符 8 Empty* operator&(); // 取址运算符 9 const Empty* op 阅读全文
posted @ 2013-07-09 20:04 renhl 阅读(162) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13