就像我想做这样的事情,
class Object {
public:
World * Parent_World; //This here
Object(World * Parent_World=NULL) : Parent_World(Parent_World) {}
};
class World {
public:
Object * Objects = new Object[100];
}
由于订单,这不起作用。而且我不能简单地更早地定义世界,因为我还希望能够访问来自世界的类 Object