No. You're misusing the comma operator.
Use a struct and push_back() the struct onto the vector.
1 2 3 4 5 6 7 8 9 10 11
struct person
{ string firstname;
string lastname;
int numbers; // Or whatever type this is
};
person p;
p.firstname = "Fred";
p.lastname = "Flintstone";
p.numbers = 1234;
V.push_back (p);