2 つの関数があり、一方が他方を呼び出して機能するとします。
void friendList::addFriend(string userNameIn)
{
if(friendList::isFriend(userNameIn))
//add friend
}
bool friendList::isFriend(string name)
{
//check if user name exists
}
これは許されますか?次のエラーが表示されます:
In member function 'void User::addFriend(std::string)':
and error: cannot call member function 'bool friendList::isFriend(std::string)' without object
機能がまだ完全に満たされていないためですか?