Here is the initial specification for the simple Address class. This is a simplification because it ignores complications such as apartments in the same building, potentially having the same number,
for example 29a, 29b.
class Address
{
private:
int number;
string name;
string postcode;
public:
};
If "Address" should be used as a utility class (possible future use in other projects by other developers):
// QUESTION
1. For each Address attribute specified in the above specification, specify whether it would be advisable to equip the Address class with the setter method for the corresponding instance variable. Give a brief rationale in each case.
Guys, this is a question of my assignment, so please do not ask questions about how the Address class is structured.