我对如何访问向量以及如何从不同的类向其添加值感到困惑。
我想将来自不同类的值添加到向量中(向量是私有的)。我还想访问 main() 中的向量并能够将其打印出来。
谁能给我一个例子来说明这是如何做到的?
Class A
{
//vector is here - it's a private vector
}
Class B
{
//add values to the vector here
}
main()
{
//access the vector here, and print out the values
}