最赞回答 / qq_风起天阑
这句话说的是两种情况:一,没有自定义的构造函数时系统自动生成默认的构造函数;二,自定义的默认构造函数分两种,不带参数的和参数都带默认值的,这些构造函数都可以用来实例化对象
2017-01-16
只有在对一个新的类对象用一个已知对象进行实例化的时候,才会调用拷贝构造函数,如果只是单纯地用类名进行申请的话,是不会调用拷贝构造函数的。
最新回答 / 蝶梦疏妄
int main(){ string name; cout<<"please input your name :"<<endl; getline(cin,name); if(name.empty()) { cout<<"are you really input any words?"<<endl; system("pause"); return 0; } cout<<"please wait"<<endl; system("sy...
2017-01-12
最赞回答 / ohmydragon
// 我没有遇到这个问题,代码是这样的。#include <iostream>#include <stdlib.h>#include <string>using namespace std;int main(void){ string name; cout << "Please input your name:"; getline(cin, name); if(name.empty()) { cout <&l...
2017-01-12