我很不清楚「operator」->
用於創建函數時的功能。python - >「operator」用於定義函數
像:
def create(self) -> None:
raise NotImplementedError("It should be implemented specifically for your backend")
或
@property
def to(self) -> Identifier:
return self._to
我試圖尋找,但我不知道什麼是「經營者」被稱爲或者如果運營商所有,並使用->
而搜索並沒有真正工作:(
註解不會「做」任何事情,真的。至少不是現在。 –
' - >'是用於函數返回值的[Type Hinting](https://www.python.org/dev/peps/pep-0484/#type-definition-syntax)的語法。 – AKS