2016年6月14日

C++ 引用本质的详解

摘要: //引用本质的理解① #include using namespace std; int GetA(){ int a = 10; return a; } int & GetB(){ int a = 10; printf("a的地址是%x\n", &a); return a; } void main(){ int a1 = 10, a2 = 0... 阅读全文

posted @ 2016-06-14 23:33 寒魔影 阅读(1378) 评论(0) 推荐(0)

导航