memset(a, -1, sizeof a); memset(a, 0, sizeof a); memset(a, 0x3f, sizeof a); //正数极大值(常用) memset(a, 127, sizeof a); //正数最大值 memset(a, 128, sizeof a); //负数最小值 //如果说忘了上述语句或者需要很特殊的值,请直接使用for循环赋值。