摘要:
int main(int argc, char *argv[]) { int t = 10; //t: 左值 int t2 = t + 1; //t: 右值 int a = 1; const int &b = a + 1; // 左值引用 // int &b = a + 1; // 错误 cout 阅读全文
posted @ 2019-11-21 11:20
wisdomroc
阅读(200)
评论(0)
推荐(0)

浙公网安备 33010602011771号