标签:指针 span 10个 style font 数组的指针 int color col
1 int &arr[10]; //arr为引用的数组
2 int (&arr)[10]; //arr为具有10个整数的整型数组的引用
3
4 int *arr[10]; //arr为指针的数组
5 int (*arr)[10]; //arr为具有10个整数的整型数组的指针
标签:指针 span 10个 style font 数组的指针 int color col
原文地址:https://www.cnblogs.com/safety/p/12233774.html