当前位置:  开发笔记 > 编程语言 > 正文

Python输入:给它实例方法声明可调用类型

如何解决《Python输入:给它实例方法声明可调用类型》经验,为你挑选了0个好方法。

请考虑以下代码:

import typing

def a(x: int, y: int) -> int:
    return x + y

class F(object):
    def b(self, x: int, y: int) -> int:
        return x + y

def call(operation: typing.Callable[[int, int], int]) -> int:
    return operation(2, 2)

call(a)

f = F()
call(f.b)

我的PyCharm IDE指示最后一行的输入错误:

1

这是打字/类型声明错误吗?PyCharm类型检查器失败了吗?如果是输入错误,应该是什么?

推荐阅读
家具销售_903
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有