TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: What is encapsulation in Python?

5 点作者 xcoding超过 8 年前

1 comment

bjw181超过 8 年前
What is encapsulation in any language? Put simply, we encapsulate mainly to prevent mistakingly altering data. For example, private methods and variables.<p><pre><code> Class Foo: def __init__(self): self.__im_private() def bar(self): print(&#x27;baz&#x27;) def __im_private(self): print(&#x27;back off, I can only be called by the class&#x27;)</code></pre>
评论 #12880858 未加载