我必须声明变量为全局变量才能在类之外使用它们吗



这似乎是我找到的唯一方法,可以只从另一个类中的类-def中提取变量,而不需要在我想要调用变量的类中拥有所有打印和函数。我是对的,还是有其他更简单的方法?

class MessageType:
    def process_msg1(self,data)
        item1 = []
        item2 = []
        item3 = []
        item1.append(float(stuff)*stuff)
        item2.append(float(stuff)*stuff)
        item2.append(float(stuff)*stuff)
        print('printing and plotting stuff')
        return(array(item1), array(item2), array(item3))
class PrintMSG(MessageType):
    def process_msg1(self, data):
        (i1, i2, i3) = messagetype.process_msg1(data)
        print('printing plus plotting using variables from class Message')
#processing piece
keep_asking = True
while keep_asking:
    command_type = input("What message type do you want to look at?")
    if command_type == 'msg type1':
        msg = MessageType()
        print_msg = PrintMSG()
        messagetype.process_msg1(self,data)
        print_msg.process_msg1(data)
    elif:
        print('other stuff')
    wannalook = input('Want to look at another message or no?')
    if not wannalook.startswith('y'):
        keep_asking = False

我遇到的问题是,我有一个项目,需要调用其他类中其他类的变量。我还有其他几个带有全局变量的类,但我的问题是(i1, i2, i3) = messagetype.process_msg1(data)再次运行整个类-def,而不仅仅是调用数组变量。如果在#processing piece下我已经调用了类-def,有没有方法可以调用它们?

参考之前发布在这里的问题!

类应该是自包含的代码和数据单元。有几个带有几个全局变量的类表明你几乎肯定做错了什么。

持续时间应长于单个方法调用的类数据,无论是以后在内部使用还是公开给其他代码,都应保存到self。因此,您的item1item2item3应该在__init__方法中初始化,然后process_msg1应该在不初始化它们的情况下更新它们。类似这样的东西:

class MessageType:
    def __init__(self):
        self.item1 = []
        self.item2 = []
        self.item3 = []
    def process_msg1(self, data)
        self.item1.append(float(stuff) * stuff)
        self.item2.append(float(stuff) * stuff)
        self.item2.append(float(stuff) * stuff)
        print('printing and plotting stuff')
        return(array(self.item1), array(self.item2), array(self.item3))

然后,一旦创建了一个实例(message_type = MessageType())并调用了process_msg1方法(message_type.process_msg1(1.0, 2.3, 3.14159)),其他代码就可以以message_type.item1等身份访问它

相关内容

  • 没有找到相关文章

最新更新