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...)
|
feedback
|
|
You should use the
| |||||
feedback
|
This outputs: $ python ./p.py
i.e., use a decorator on an attribute. It would be so clean... | |||||||||
feedback
|
|
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. | |||
|
feedback
|
|
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. | |||||||||
feedback
|
|
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:
| |||
|
feedback
|
|
I am aware that William Keller is the cleanest solution by far.. but here's something I came up with..
And here's the usage example
Unfortunately this solution can't handle private variables (__ named variables). | ||||
|
feedback
|