int i = 33; int * pi = &i; cout << "i: " << *pi << endl; cout << "i: " << pi[0] << endl;
两条线都返回同样的东西.
本质上,如果我得到任何指针的索引零,我将在指针的位置获得正确类型的值.与解除引用不是一回事吗?
每次在C中取消引用指针时,不会得到索引零也有效吗?我并不是说任何人都应该这样做,但我认为它会起作用.不是吗?
using arr = int[2]; arr&& f(); int&& b = *f(); // error,*f() is an lvalue,doesn't bind to int&& int&& c = f()[0]; // OK,subscript applied to array rvalue results in an xvalue
但是,我不知道任何实现该解决方案的编译器.但最终应该实施.