C和指针 6.8 指针、间接访问和变量

缘起

《C和指针》 6.8

分析

1
2
int a;
*&a = 10;

1
2
int a;
a = 10;

是等价的. 但是前者的可读性很差.虽然无措,但是应该避免