假如说我现在有一个结构体里面装了个 vector
struct Node { vector<int> a; } t;
我能不能写 t.size() 来直接调用 vector 里面的函数(就是可以怎么处理)
t.size()