吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 646|回复: 3
收起左侧

[已解决] python内置函数调用求助

[复制链接]
liu8359 发表于 2023-4-21 11:06
本帖最后由 liu8359 于 2023-4-21 11:33 编辑

start_pauseOrPlay 和 set_matplotlib 是同级函数
start_pauseOrPlay中怎样调用onClick?


[Python] 纯文本查看 复制代码
class Ui_MainWindow(object):
    def start_pauseOrPlay(self):
        self.set_matplotlib().onClick

    def set_matplotlib(self):
        def onClick(event):
            print(1)

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

头像被屏蔽
saszznz 发表于 2023-4-21 11:24
提示: 作者被禁止或删除 内容自动屏蔽
 楼主| liu8359 发表于 2023-4-21 11:33
saszznz 发表于 2023-4-21 11:24
首先理解全局变量和局部变量的关系 [mw_shl_code=python,true]def a():
    def b():
        return 2

感谢大佬指导,之前是写C#的,现在让写python呢
好多东西都不懂,硬写
woaixue 发表于 2023-4-21 15:26
本帖最后由 woaixue 于 2023-4-21 15:28 编辑



其实已经是闭包函数了,
class Ui_MainWindow(object):
    def start_pauseOrPlay(self):
        onClick = self.set_matplotlib()
        onClick(None)

    def set_matplotlib(self):
        def onClick(event):
            print(1)

        return onClick
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 00:49

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表