vote up 2 vote down star
1

There's alot of talk about getters and setters being 'evil' and what not.

My question is: is the following setter evil? (rest of class omitted for brevity's sake)

int balance

public void deposit(int amount)  
{  
    this.balance += amount;  
}

This class is emulating an ATM. In the UK there are a few ATM's that lets you deposit as well as withdraw therefore this object needs a way of changing its state (the balance). Is this setter 'evil'?

flag
setBalance / doDeposit – Vlad Romascanu Feb 25 at 21:38
2  
This isn't a setter. – fatcat1111 Sep 3 at 20:21

12 Answers

vote up 0 vote down

that's not a setter, its a normal method

even if it was a setter, it's not evil

this is an evil setter

int _balance = 0;  
public int Balance()  
{  
    get { return _balance; }  
    set { }    //now that's evil!  
}
link|flag
vote up 0 vote down

That's not a setter. That's a normal method (or member function, or whatever).

A setter is a function that sets a given variable to a given value, and is usually a bad idea. A method is a function that performs a given class operation. It's meaningful in terms of the class.

If you have a weird data structure, you may not actually have a "balance" variable. No matter what your data structure, you're going to have to have a "deposit" function. There's part of the difference.

link|flag
vote up 3 vote down

Is that a trick question? I ask because the provided method isn't even a "setter" method. It's an operation, not a property. Setters and Getters are generally accessor methods for private variables (properties). So i guess the answer to your question is:

That's not a setter, but as a general method that performs an operation on an object, it's not evil at all.

link|flag
vote up 0 vote down

You can't tell whether a single method is evil or not, it depends on the context and who has access to the object.

If you have getters and setters for all fields and everybody and his dog have access to the object, then that is very bad, as there is essentially no encapsulation of the data.

If on the other hand you have setters only for the fields which need it and the object is only known to a select few other objects which need to communicate with it, then that would be quite OK.

link|flag
vote up 0 vote down

IMO, the ATM should not have 'balance' as a field.

(additionally, your 'deposit' method is not a setter)

You should probably have an Account object with a 'balance' field and possibly a convenience method 'modifyBalance' on it that takes a positive value to increment or a negative value to decrement the balance.

Then your ATM methods would call 'modifyBalance' on the Account object when performing those types of transactions.

link|flag
vote up 2 vote down

Personally, I would call that a method, not a setter. The stereotypical setter would be

public void deposit(int new_balance)
{
    this.balance = new_balance;
}

All it does is give you direct access to the internals of the class, thus defeating any value gained by encapsulating them and restricting access. Which is why people don't like them.

link|flag
So, a mutator method is different to a setter? – eric Feb 25 at 20:40
vote up 0 vote down

One issue that I see is that you are using an integral type when dealing with money. Not an issue if this is a fixed-point number but there is no indication that it is so.

link|flag
vote up 6 vote down

I don't believe that that is what is meant when people talk about getters and setters, because this is not simply setting a member to the given value.

I don't care for setters and getters, but mostly because I think of my "objects" as higher-level entities in the codebase. E.g. (IMO) it would be "more wrong" to do the operation outside of the class:

account.SetBalance(account.GetBalance() + depositAmount)

Instead, you've implemented higher-level functionality in your object; you make a deposit and let the object figure out the right way of dealing with it. This allows much more centralized handling of exceptional conditions than the getter/setter example I gave above.

link|flag
+1 Good example of what makes getters and setters "evil." – Chuck Feb 25 at 20:57
vote up 0 vote down

Not necessarily; you mention that you want to emulate the behaviour of an ATM (cash machine). And you're concerned that ATMs let you deposit as well as withdraw. But those operations, the deposit and withdrawl, would have to be serialized. You need all of your actions to be atomic, so this sort of method is better than one where you try to do more things.

link|flag
vote up 1 vote down

Well you would want to check for negative amounts, a zero amount, etc... but give the requirement it is ok.

Follow this rule of thumb, every variable you make should be final unless it has to change and never make set methods for instance variables unless you really want them to be changed outside of the class.

link|flag
vote up 3 vote down

For a class, there's nothing evil about setting a value via a setter, but that's more of a function than a direct setter. Yes, it sets the value of a property, but it does it via addition rather than replacing the previous value and the names don't line up.

A real 'setter' would look more like this:

int balance

private void setBalance(int amount)
{
    this.balance = amount;
}

public void deposit(int amount)  
{  
    setBalance(this.balance + amount);  
}

For your specific ATM problem, though, I very much doubt that an ATM adds a deposit to your balance immediately. It likely needs to be collected and posted via a separate mechanism.

link|flag
Now THAT looks like setter evil. A key advantage of using a setter is to make it the user API to setting a value. The underlying logic can change and the user code is not affected. In this example, it's private and gains nothing by design. – spoulson Feb 25 at 20:37
This implementation gains nothing- but when they need to start also logging every balance change it's nice to already be enforcing putting all those changes through one place. – Joel Coehoorn Feb 25 at 20:42
I agree. However, this design doesn't impact the user. Changing the code from private field to private setter wouldn't change the user API, so it just becomes an unused layer of abstraction until you put that logging code in there. – spoulson Feb 25 at 20:49
I wanted to keep my sample both simple and relevant to the original question, and also demonstrate a real setter. Pretend for a moment that the additional logging code is implied... – Joel Coehoorn Feb 25 at 20:51
Also: I did think about making setBalance public when writing the sample, but given the context I just couldn't justify making it part of the public interface to the class. – Joel Coehoorn Feb 25 at 22:28
vote up 7 vote down

Except for the fact that there is no handling of exceptional conditions, it looks like a perfectly good OO method - it's called what it does, and it does what you'd expect.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.