c++ 中&表達的所有的意思分別是什麼

wzhuangzi發表於2006-11-16
取地址:
int a=1;
int *b=&a;
引用:
int a=1;
int &b=a;
運算子:
 int a=1;
int b=0;
a&b=1

相關文章