"Gregory, Matthew" wrote
Is there a guideline on where instance member variables should
be set within a class? That is, is it a bad idea to set self
variables
within private member functions rather than returning them to
the enclosing caller?
There is nothing really specific to OOPP its j
On Sat, 4 Sep 2010 05:17:34 am Gregory, Matthew wrote:
> Hi all,
>
> Is there a guideline on where instance member variables should be set
> within a class?
The normal terminology used in Python is "attributes" instead of "member
variables", and "methods" rather than "member functions".
[...]
Hi all,
Is there a guideline on where instance member variables should be set within a
class? That is, is it a bad idea to set self variables within private member
functions rather than returning them to the enclosing caller? Or should I
avoid calls to internal functions from other member fun