class P
{
public:
int x,y,z;
P(int x,int y,int z)
{
this->x=x;
this->y=y;
this->z=z;
}
};
class A
{
public:
vector<P>p;
// p.push_back(P(1,2,3));
};
Is there any association relation between class P and class A since vector is of class type?