定义和赋值的区别 构造函数和拷贝构造函数
摘要:
type a;type b=a; //调用拷贝构造函数type d(a); //调用拷贝构造函数type c;c=a ; //赋值语句,调用默认构造函数,重载=,改变行为. Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->class ClsA{p... 阅读全文
posted @ 2006-11-27 13:31 YZG 阅读(377) 评论(1) 推荐(0) 编辑