首页 > 代码库 > C++构造函数2
C++构造函数2
一、构造函数分类
普通构造函数,复制(拷贝)构造函数,赋值构造函数,
#include <iostream> using namespace std; class A { public: A() { a = 0; }//普通 A(const A&other) {//复制 this->a = other.a; } A &operator=(const A & other) {//赋值 this->a = other.a; return *this; } A(double convert) {//转换构造函数 this->a = int(convert); } private: int a; }; int main() { A a, b;//调用普通构造函数 A c = b;//调用复制构造函数 c = a;//调用赋值构造函数 A d(c);//调用赋值构造函数 double e = 0.1; A f(e); return 0; }
C++构造函数2
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。