2016年12月19日

摘要: int a=3; int *ta=&a; *ta=4; //a=4 *ta = &a 用地址去赋值 int b=*ta; //b=4 b的地址独立 a=10; //b=4 阅读全文
posted @ 2016-12-19 18:01 摩羯小伟 阅读(59) 评论(0) 推荐(0) 编辑

导航