Possible Duplicate:
How can I pass a vector variable to a function?
我有以下法典:
std::vector <const char*> value;
value[0] = buf.c_str();
// Now I have to pass the vector variable to function.
// Function declaration: int my_function(const char *)
my_function(value[0]);
然而,我发现这一错误:
差错:不能将<条码>改为: 韦克尔加勒; 果*:平地位置和带;char*> ; <条码>至<条码>,用于第1至<条码>的争论
你们能否帮助我解决这一问题?