V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
zhoudaiyu
V2EX  ›  Python

问问大家一个关于类变量初始化引发的关于 IDE 错误提示的问题

  •  
  •   zhoudaiyu · 2021-11-02 13:47:12 +08:00 · 1281 次点击
    这是一个创建于 906 天前的主题,其中的信息可能已经有所发展或是发生改变。
    代码如下:

    其实错误就是在变量初始化前就引用了变量。我的问题是:这种错误,IDE ( Pycharm )为啥不能提示出来呢?(没有甩锅的意思,就是从技术角度比较好奇)
    1 条回复    2021-11-02 14:01:10 +08:00
    Vegetable
        1
    Vegetable  
       2021-11-02 14:01:10 +08:00
    如果你加上如下代码呢?

    def __new__(cls, *args, **kwargs):
    init = super().__new__(cls)
    init._val_d = "default_val_d"
    return init

    这玩意想静态分析着实有点难
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2534 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 24ms · UTC 15:49 · PVG 23:49 · LAX 08:49 · JFK 11:49
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.