【C++】文字列とintを行き来して、非対称性に違和感

string s;
int a;

// string to int
stoi(s);

// int to string
a.to_string();
  • no symmetry!