Classes ��Python������������������������������C++�Modula-3 ����Pyihon�������������������������
��������� �“�������������������������������������� ������override������������������������������� �����������
�C++���������������������*��* ���PriMe Variables
�� ��
������������*�*� virtual ����
�������������Modula-3 ����������������������������������������� �����������
��������������Smalltalk ������������ �����������Python�����������������������
��� �������C++��Modula-3������������������������ ��������������������
A Word About Terminology ����������������������Smalltalk�C++�����������Modula-
3 ��� ����������C++���Python,���������������
����������������������������������������� ������Python��������������������
����������� ���������������������Python���������������� ������������������
����������������������� ����������������������������������������� �������
�����������������������■����������� ����Pascal����������������
Python Scopes and Name Spaces�������������������������Python���������������
������� ����������������������������������������� ��������Python���������
Let's begin with some definitions. ����������
�����*����������,�����������Python���������� �����������������������������
������������ ��������������abs��������������������������� ����������������
������������������������� ����������������������������������������� �����
�“maximize”����������������������������� ����������Python�����������*��*����
��z.real��real���z����������������������������
modname.funcname��modname��������''�uncname�'������������ ��������������������
������������� [#]_ ����������������������������������
''modname.the_answer = 42'',,���������del��������''del mod name. thc_answcr'' �� modname ����
� thc_answcr ���
����������������������������������������� ������������ /�
Private Variables �����There is limited support for class-private identifiers. Any
identifier of the form _spam (at least two leading underscores, at most one trailing underscore) is
textually replaced with _classnainc_spam, where elassname is the current class name with leading
undcrscorc(s) stripped. This mangling is done without regard to the syntactic position of the
identifier, so it can be used to define class-private instance and class variables, methcxls, variables
stored in globals, and even variables stored in instances, private to this class on instances of other
classes. Truncation may occur when the mangled name would be longer than 255 characters. Outside
classes, or when the class name consists of only underscores, no mangling occurs.
Python��������������������_spam (������������� �����)�������_classname_spam ,���
�����classname����� ����������������������������������������� ��������*��*�
������������������255���������� ����������������������������
Name mangling is intended to give classes an easy way to define “private“ instance variables and methods,
without having to worry about instance variables defined by derived classes, or mucking with instance
variables by code outside the class. Note that the mangling rules are designed mostly to avoid accidents; it
still is possible for a determined soul to access or modify a variable that is considered private. This can even
be useful in special circumstances, such as in the debugger, and that's one reason why this loophole is not
closed. (Buglet: derivation of a class with the same name as the base class makes use of private variables of