Block *map[5];//创建一个Block对象类型的指针数组 ///初始化map for(int i=0;i<5;i++) { for(int j=0;j<5;j++) { ///(map[i]+j)=new Block(i,j); 这样会报错,因为(map[i]+j)不是一个变量 } }