atoi() は私にこのエラーを与えています:
error C2664: 'atoi' : cannot convert parameter 1 from 'char' to 'const char *'
Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast
この行から: int pid = atoi( token.at(0) ); トークンはベクトルです
どうすればこれを回避できますか?