Here is my code:
class Soldier {
public:
Soldier(const string &name, const Gun &gun);
string getName();
private:
Gun gun;
string name;
};
class Gun {
public:
void fire();
void load(int bullets);
int getBullets();
private:
int bullets;
}
I need to call all the member functions of Gun over a Soldier object. Something like:
soldier.gun.fire();
or
soldier.getGun().load(15);
So which one is a better design? Hiding the gun object as a private member and access it with getGun() function. Or making it a public member? Or I can encapsulate all these functions would make the implementation harder:
soldier.loadGun(15); // calls Gun.load()
soldier.fire(); // calls Gun.fire()
So which one do you think is the best?
get_gun()that does work necessary for the soldier to get the gun, as Stephen shows, but tell the soldier what to do, not the gun, as Frustrated shows. – GManNickG Apr 6 '10 at 15:04soldier.Attack()could callsoldier.loadGun()- it depends on how the "attack" behaviour for a soldier is defined. But loadGun might be something that should be seperable from attacking - after all, sometimes you realize you're low on ammo and want to reload BEFORE the next attack. And sometimes you shoot by instinct, no time to first check the ammo. – FrustratedWithFormsDesigner Apr 6 '10 at 15:25