std::string
格納されている astd::vector
を整数に変換し、それをパラメーターとして関数に渡そうとしています。
これは私のコードの簡略版です:
vector <string> record;
functiontest(atoi(record[i].c_str));
私のエラーは次のとおりです。
error: argument of type ‘const char* (std::basic_string<char, std::char_traits<char>, std::allocator<char> >::)()const’ does not match ‘const char*’
これどうやってするの?