Say I got an Employee class that has a hire date data member. This member only get set one time only and it is constant too. So it'll get initialised when the object is created.
If I want the class to have a method that returns the hire date, what's better:
getHireDate();
Or just:
hireDate();
Am I thinking too much :D ?