-2
私はthisを見て、__init__
の機能を持たないPost
オブジェクトを作成します:first = Post(title='My First Blog Post, yay!', published=True)
。だから私は疑問に思う - 任意のPythonの3.5+オブジェクトは、このようなメンバーを設定__init__
機能せずに作成することができます。__init__ aはオブジェクトインスタンスの値を設定できる必要がありますか?
class Apple:
id = 66
w = 99
an_apple = Apple(id=44, w=55)
それは 'DocType'クラスから' __init__'を継承します。https://github.com/elastic/elasticsearch-dsl-py/blob/b71cb29a5b72c653761464b23c81fcab89b588da/elasticsearch_dsl/document.py#L104 –
あなたは* *それを試してみましたか?何が起こった?そしてその結果はあなたに何を伝えますか? – jonrsharpe