Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Where should I write codes for checking validity of class' properties? (For examples: "amount" should be a positive integer, "email" should be a string with correct e-mail formatting) At the setter methods, At somewhere I use that (using try/catch), or others.

If I check validity at setter methods, it may be looked ugly (like type checking). But if I check it when using it, duplicated code may appeared when it is used many times.

(Sorry for my poor English.)

share|improve this question

2 Answers

up vote 4 down vote accepted

Definitely do it in the setter, if you need to do it at all.

First, the setter is probably called less often than the getters, so you're doing less work.

Second, you catch the problem earlier.

Third, it keeps the internal state of the object consistent. Keeping out bad data means you know that your object is "right".

share|improve this answer
+1: Internal state of the object must be perfect, consistent, correct. – S.Lott Feb 3 '10 at 19:02

If it looks like ugly type checking, that may be because it is. If "amount" absolutely needs to be a positive integer, and the rest of the module will fail badly if it is not, then you need to do some type checking.

The python way of doing this, though, is only to check for the actual properties that you require.

In the positive integer example, that means not checking that the value is an Int object, but checking instead that it has a value, and that the value is > 0. This lets other programmers pass your methods objects that act like numbers, without strictly constraining their type.

The same thing goes for the email example -- check that it is properly formatted (matches whatever email regex you are using), but don't insist that it is an instance of the Str class. Don't insist on anything in your validity checking except properties that you are actually going to use.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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