C++引用成员初始化有何问题

2024-11-27 01:22:04
推荐回答(1个)
回答1:

引用必须在定义的时候初始化...

int &a; 这样就算错误的,而且引用没必要delete

int a = new int;
delete a;

这个时候才需要delete