软件工程C++C++ 类型别名简化指针C++ 类型别名简化指针using int_array = int[4]; for (int_array *p = ia; p != ia + 3; ++p) { ... } 这样,我们就可以用该类型名让程序变得简洁。