1.引用未初始化的指针
12
int *ptr;int &ref = *ptr;
2.引用需要返回的局部变量
12345
int& (){ int a = 10; return a;}
1520
617
603
258
202
近期评论