标签: c++ qt
我有一个
QVector<structure> m_vector;
结构有很多字段,其中一些是固定维度的,其中一些是其他动态QVectors ..
我想知道我是否可以这样做:
m_vector[4].another_vector[9].another_vector[2].field_in_the_structure = 2;
更改对整个m_vector有效吗?
答案 0 :(得分:0)
是的,这应该按照你期望的方式运作。