“non-standard syntax; use '&' to create a pointer to member” error in Visual Studio 2015

后端 未结 2 2106
小蘑菇
小蘑菇 2020-12-17 23:39

I have this function:

std::string Room::getUsersAsString(std::vector usersList, User * excludeUser)
{
    std::string usersNames = " ";         


        
相关标签:
2条回答
  • 2020-12-17 23:56

    You are missing the function call parentheses in these lines:

    if (usersList[i]->getUsername() != excludeUser->getUsername) {
    

    and

    usersNames.append(usersList[i]->getUsername);
    

    Try changing them into this:

    if (usersList[i]->getUsername() != excludeUser->getUsername()) {
    

    and

    usersNames.append(usersList[i]->getUsername());
    
    0 讨论(0)
  • 2020-12-17 23:59

    If you use

    if (usersList[i]->getUsername() != excludeUser->getUsername)
    

    instead of

    if (usersList[i]->getUsername() != excludeUser->getUsername())
    

    your compiler will think you want to use a function pointer instead of the method itself, and if you would have wanted to use a function pointer, you would still have to get the address of it (using &).

    So make sure you don't forget your () after a function call!

    0 讨论(0)
提交回复
热议问题