python 类和变量范围

发布于 2024-11-07 02:49:30 字数 263 浏览 1 评论 0原文

class Test:

    def c(self, args):
        print args

    def b(self, args):
        args.append('d')

    def a(self):
        args = ['a', 'b', 'c']
        self.b(args)
        self.c(args)

Test().a()

为什么不打印 ['a', 'b', 'c']?

class Test:

    def c(self, args):
        print args

    def b(self, args):
        args.append('d')

    def a(self):
        args = ['a', 'b', 'c']
        self.b(args)
        self.c(args)

Test().a()

Why doesn't this print ['a', 'b', 'c']?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

懒猫 2024-11-14 02:49:30

当您将列表传递给函数时,您实际上是在向其传递一个指向该列表的指针,而不是该列表的副本。因此,b 正在将一个值附加到原始 args,而不是它自己的本地副本。

When you pass a list to a function, you're really passing it a pointer to the list and not a copy of the list. So b is appending a value to the original args, not its own local copy of it.

那支青花 2024-11-14 02:49:30

您传递给方法 bc 的参数是对列表 args 的引用,而不是它的副本。在方法 b 中,您将附加到在方法 a 中创建的同一列表。

请参阅此答案了解更多信息Python中参数传递的详细解释。

The parameter you pass to methods b and c is a reference to the list args, not a copy of it. In method b, you append to the same list you created in method a.

See this answer for a more detailed explanation on parameter passing in Python.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文