列表我來自爪哇,我希望做一些data transfer objects(DTO的)是這樣的:定義類型
class ErrorDefinition():
code = ''
message = ''
exception = ''
class ResponseDTO():
sucess = True
errors = list() # How do I say it that it is directly of the ErrorDefinition() type, to not import it every time that I'm going to append an error definition?
還是有更好的方式來做到這一點?
雖然這可能是真實的,類型提示是什麼,讓我們的生活更加美好,並幫助您避免愚蠢的錯誤。請參閱:https://www.python.org/dev/peps/pep-0484/ – Pretzel 2016-01-26 16:16:18
Python有可選的類型檢查。這是針對問題的精神以及語言的意圖和能力的建議。 – ggranum 2017-12-10 17:00:27