比我聪明得多的人的另一个问题:
我正在尝试创建 3 个 Player 类的实例,如下所示:
Player *player1 = new Player("Aaron",0.3333333);
Player *player2 = new Player("Bob",0.5);
Player *player3 = new Player("Charlie",1);
你可以在下面看到他们的构造函数。这真的很简单:
Player::Player(string n, double hr)
{
name = n;
hitrate = hr;
}
(假设名称和命中率定义正确)
现在我的问题是,当我尝试检查每个玩家的名字时,似乎他们都成为了 player3 的别名
//Directly after the player instantiations:
cout << player1->getName() << "\n";
cout << player2->getName() << "\n";
cout << player3->getName() << "\n";
//In the Player.cpp file:
string Player::getName(){
return name;
}
Outputs:
Charlie
Charlie
Charlie
好吧,所以我真的很想知道解决这个问题的最佳解决方案,但更重要的是我只想了解它为什么会这样。这似乎是一件很简单的事情(像我一样被java宠坏了)。
另外需要注意的是:这是针对学校作业的,我被告知我必须使用动态分配的对象。
非常感谢,如果有什么需要澄清的,请告诉我。
编辑:根据需要,这里是完整的文件:
播放器测试.cpp
#include <iostream>
#include <player.h>
using namespace std;
int main(){
Player *player1 = new Player("Aaron",0.3333333);
Player *player2 = new Player("Bob",0.5);
Player *player3 = new Player("Charlie",1);
cout << player1->getName() << "\n";
cout << player2->getName() << "\n";
cout << player3->getName() << "\n";
return 0;
}
播放器.h
#ifndef PLAYER_H
#define PLAYER_H
#include <string>
using namespace std;
class Player
{
public:
Player(string, double);
string getName();
};
//Player.cpp
#include "Player.h"
string name;
double hitrate;
Player::Player(string n, double hr)
{
name = n;
hr = hitrate;
}
string Player::getName(){
return name;
}
#endif // PLAYER_H