首頁  >  文章  >  後端開發  >  使用 if x is not None 還是if not x is None

使用 if x is not None 還是if not x is None

anonymity
anonymity原創
2019-05-24 13:48:354180瀏覽

使用 if x is not None 還是if not x is None呢?

Google的風格指南和PEP-8都使用if x is not None,那麼它們之間是否存在某種輕微的效能差異呢?

使用 if x is not None 還是if not x is None

透過測試發現沒有效能差異,因為它們編譯為相同的字節碼:

Python 2.6.2 (r262:71600, Apr 15 2009, 07:20:39)>>> import dis>>> def f(x):...    return x is not None...>>> dis.dis(f)
  2           0 LOAD_FAST                0 (x)
              3 LOAD_CONST               0 (None)
              6 COMPARE_OP               9 (is not)
              9 RETURN_VALUE>>> def g(x):...   return not x is None...>>> dis.dis(g)
  2           0 LOAD_FAST                0 (x)
              3 LOAD_CONST               0 (None)
              6 COMPARE_OP               9 (is not)
              9 RETURN_VALUE

但是在使用風格上,盡量避免not x is y。儘管編譯器總是將其視為not (x is y),但讀者可能會誤解構造為(not x) is y。所以if x is not y就沒有這些歧義。

以上是使用 if x is not None 還是if not x is None的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn