第20918题 判断
以下C++代码中,构造函数被调用的次数为1次的说法是否正确?
class Test {public:Test() { cout << "T "; }};
int main() {
    Test a;
    Test b = a;
}
A

正确

B

错误