本文介绍了python/pygame,将输入从一个类传递到另一个类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有一种方法可以将值或变量从一个类传递到另一个类,而无需通过主函数

there is a way to pass a value or a variable from a class to another class without having to pass through the main function

我正在使用python

I'm using python

推荐答案

当然,您可以在特定对象的方法中访问其他对象属性.例如:

well, of course you can access other objects attributes in methods of a specific object. e.g:

class A(object):
    def method(self, other):
         other.somevar = 5

class B(object):
    pass

def main():
    a = A()
    b = B()

    b.somevar = "Hello World"
    a.method(b)
    print(b.somevar) # now prints '5'

这篇关于python/pygame,将输入从一个类传递到另一个类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-20 14:54