我有这样的功能:
int find_string ( string *url){
if(*url.find() != string::npos){
[...]
}
[...]
}
并这样称呼它:
find_string(&url);
但是我得到了以下编译错误:
request for member ‘find’ in ‘url’, which is of non-class type ‘std::string*’
为什么会发生这种情况,最重要的是,我该如何解决这个问题?(当没有指针时,它正在工作)