typedef struct user { string username; vector<unsigned char> userpassword; } user_t;
我需要用一个空的向量来初始化userpassword:
struct user r={"",?};
我该怎么办?