单项选择题

有如下程序:
#include <iostream>
using namespace std;
class test
private:
int a;
public:
test( )cout<<"constructor"<<endl;
test(int

A.cout<<a<<endl; <br> test(const test &_test) <br> a=_test.a; <br> cout<<"copy constructor"<<endl; <br> <br> ~test()cout<<"destructor"<<endl; <br> ; <br> int main( ) <br> test A(3) <br> return 0; <br> <br> 程序的输出结果是A) 3<br> destructor
B.constructor<br> destructor
C.copy constructor<br> destructor
D.3