我有一个孩子,父母和祖父母班级的设置。 一个祖父母有几个父母存储在向量中,每个父母有几个孩子也存储在向量中。每个对象都拥有对其所有者的引用。
在MAIN中,我分别将祖父母和父母的ID变量设置为1,但是当我访问子父母的ID时,它为null。但是,当我访问孩子的父母时,祖父母的父母是预期的1。
为什么孩子父母的身份证不是1?
#ifndef HEADERH_H
#define HEADER_H
#include <vector>
class CHILD;
class PARENT;
class GRANDPARENT;
class CHILD{
public:
int id;
const PARENT &parent;
CHILD(PARENT &parent):parent(parent){};};
class PARENT{
public:
int id;
const GRANDPARENT &grandparent;
std::vector<CHILD> children;
PARENT(GRANDPARENT &grandparent):grandparent(grandparent){};};
class GRANDPARENT
{
public:
int id;
std::vector<PARENT> parents;
GRANDPARENT(){};
};
#endif
源文件
#include "Headerh.h"
#include <iostream>
int main(){
GRANDPARENT grandparent;
for(int i=0; i<=5; i++){
PARENT parent(grandparent);
for(int i=0; i<=5; i++){
CHILD child(parent);
parent.children.push_back(child);
}
grandparent.parents.push_back(parent);
}
grandparent.id = 1;
grandparent.parents[1].id = 1;
int test(grandparent.parents[1].children[1].parent.id);
int test0(grandparent.parents[1].children[1].parent.grandparent.id);
std::cout<<test<<" "<< test0<<std::endl;
return 0;
};