填空题
有下列程序:
#include<iostream>
using namespace std;
class Con
{
char ID;
public:
Con():ID(’A’){cout<<1;}
Con(char ID) :D(ID) {cout<<2;}
Con(Con& c):ID(c.getID()){cout<<3;}
char getID()const{return ID;}
};
void show(COn c){cout<<c.getID();}
int main()
{
Con c1;
show(c1);
Con c2(’B’);
show(c2);
retum 0;
}
执行上面程序的输出结果是______。
【参考答案】
13A23B