In Python, I want to make selected instance attributes of a class be readonly to code outside of the class. I want there to be no way outside code can alter the attribute, except indirectly by invoking methods on the instance. I want the syntax to be concise. What is the best way? (I give my current best answer below...)
|
1
|
|
|
|
|
|
You should use the
|
||||
|
|
|
There is no real way to do this. There are ways to make it more 'difficult', but there's no concept of completely hidden, inaccessible class attributes. If the person using your class can't be trusted to follow the API docs, then that's their own problem. Protecting people from doing stupid stuff just means that they will do far more elaborate, complicated, and damaging stupid stuff to try to do whatever they shouldn't have been doing in the first place. |
||||||||
|
|
|
This outputs: $ python ./p.py
i.e., use a decorator on an attribute. It would be so clean... |
||||||
|
|
|
You could use a metaclass that auto-wraps methods (or class attributes) that follow a naming convention into properties (shamelessly taken from Unifying Types and Classes in Python 2.2:
This allows you to use:
|
||
|
|
|
|
Here's how:
(Assuming On the other hand... this is a pretty silly thing to do. Keeping variables private seems to be an obsession that comes from C++ and Java. Your users should use the public interface to your class because it's well-designed, not because you force them to. Edit: Looks like Kevin already posted a similar version. |
||
|
|
