本文共 118 字,大约阅读时间需要 1 分钟。
Item x[20];
Item * ptr = x;
ptr = &(x[0]);
ptr = &(x[i]);
ptr = x + i;
转载于:https://www.cnblogs.com/aoun/p/3672617.html