


This article brings you an introduction to whether Python access restrictions are private or public (with examples). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
1. Knowledge points
In a module, we may define many functions and variables. But some functions and variables we hope can be used by others, and some functions and variables we hope to only be used inside the module, so?
We can achieve this goal by defining whether the function and variable are public or private.
In Python, this is achieved through the underscore "_" prefix.
public: public. Normal function and variable names are of this type and can be referenced directly. For example, variables abc, PI, etc.;
Special variables: The format is __xxx__, starting with __ and ending with __. Can be referenced directly, but has special uses. For example, __author__ and __name__ are special variables. Generally, do not use this type of variable name for variables you define yourself.
private: private, non-public, format similar to _xxx_ and __xxx, such as __num.
should not be referenced directly, only internally accessible, not externally accessible.
The internal state of the object cannot be modified at will, so the code is more robust through the protection of access restrictions.
2. Example
Inside the Class class, there can be attributes and methods. External code can manipulate data by directly calling the instance variable method, hiding the internal complex logic. However, external code is still free to modify an instance's properties. For example:
>>>b.score 99 >>>b.score = 59 >>>b.score 59
If you want to prevent internal attributes from being accessed externally, you can add two underscores "__" before the name of the attribute to turn it into a private variable, as follows:
class Student(object): def __init__(self, name, score): self.__name = name self.__score = score def print_score(self): print('%s: %s' % (self.__name, self.__score))
Try to When accessing properties from outside, an error will be reported because private variables cannot be accessed externally.
>>> bart = Student('Bart Simpson', 98) >>> bart.__name # 私有变量:不能被外部访问 Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'Student' object has no attribute '__name'</module></stdin>
But what if the external code wants to get the name and score?
Add methods to obtain attributes to the Student class: get_name() and get_score(), as follows:
class Student(object): ... def get_name(self): return self.__name def get_score(self): return self.__score
What if external code modifies the score? You can add a setting method to the Student class: set_score()
:
... def set_score(self, score): # 避免传入无效参数 if 0 <p> Then must the private instance variables starting with a double underscore not be accessible from the outside? Not really. <br>You cannot access __name directly because the Python interpreter externally changes the __name variable to _Student__name, so you can still access the __name variable through _Student__name. </p><pre class="brush:php;toolbar:false">>>> bart = Student('Bart Simpson', 98) >>> bart.get_name() 'Bart Simpson' >>> bart.__name = 'New Name' # 给bart新增的__name变量 >>> bart.__name # !与class内部的__name变量不是一个变量! 'New Name' >>> bart.get_name() # get_name()内部返回self.__name (_Student__name) 'Bart Simpson'
On the surface, the external code "successfully" sets the __name variable, but in fact this __name variable and the __name variable inside the class are not the same variable! The internal __name variable has been automatically changed to _Student__name by the Python interpreter, and the external code adds a new __name variable to bart.
So Python does not have a way to completely restrict access to private functions or variables, so it is not "cannot be directly referenced". From programming habits, private functions or variables should not be referenced. What's their use?
For example:
def _private_1 (name): return 'hello,%s ' % name def _private_2 (name): return 'hi , %s ' % name def greeting(name): if len(name) > 3: return _private_1 (name) else: return _private_2 (name)
The greeting() function is exposed in the module, but the internal logic is hidden using the private function. In this way, calling the greeting() function does not need to worry about the details of the internal private function.
This is a very useful method of code encapsulation and abstraction, that is: all functions that do not need to be referenced from the outside are defined as private, and only functions that need to be referenced from the outside are defined as public.
3. Complete code
class Student(object): def __init__(self, name, score): self.__name = name self.__score = score def print_score(self): print('%s: %s' % (self.__name, self.__score)) def get_name(self): return self.__name def get_score(self): return self.__score def set_score(self, score): # 避免传入无效参数 if 0 3: return _private_1 (name) else: return _private_2 (name)
The above is the detailed content of Introduction to whether Python access restrictions are private or public (with examples). For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
