Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
952 views
in Technique[技术] by (71.8m points)

visual c++ - Error C3867 in C++

My code was working fine until I reloaded the program a few hours later. Now I get these this error:

error C3867: 'player::getxPos': function call missing argument list; use '&player::getxPos' to create a pointer to member

error C3867: 'player::getyPos': function call missing argument list; use '&player::getyPos' to create a pointer to member

This is the code in question:

if (P->shoot())
{
    shotVector.push_back(shot());
    eS = shotVector.size();
    shotVector[eS-1].initShot(
        P->getxPos, // C3867
        P->getyPos // C3867
    );
}

I'm trying to call two functions from a class called player and these two functions look like this:

int player::getxPos(){
    return xPos;
};

int player::getyPos(){
    return yPos;
};

What's being done is that I'm trying to ask for the players position and then use that to decide where to shoot from.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

shotVector[eS-1].initShot(P->getxPos, P->getyPos); - you are trying to call the getxPos() and getyPos() members without ().

Use getxPos() and getyPos().


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...