// 3种形式 void comp(int arg[10]){}; // 对数组元素的个数进行限制,超过10的数组只会截取前10个 void comp(int arg[]){}; void comp(int* arg){};