PosType &nextpos引用参数,调用的时候:FindNext(maze,curpos, &nextpos) nextpos变成指针了这样调用就可以:FindNext(maze,curpos, nextpos)
PosType &nextpos 这可不是指针啊。这是引用类型。