今回の話でつくづく思った
フェルにはそこに必要な知識の資料があるのに読まないのも理解出来ないんだな
フェル基準だと、資料読むのに古語習得が必須なのに学習しないのも、魔力の必要な王族が全属性を得る方法があるのに実行しないのも、怠惰でやる気を疑う状態なんだろう
フェル基準に応えてきた地雷さんスゲーわw
いや、理解できないほうがふつうだと思うが。
誰かさんみたいのが標準なら、世の中とうに滅んでる。
今回の話でつくづく思った
フェルにはそこに必要な知識の資料があるのに読まないのも理解出来ないんだな
フェル基準だと、資料読むのに古語習得が必須なのに学習しないのも、魔力の必要な王族が全属性を得る方法があるのに実行しないのも、怠惰でやる気を疑う状態なんだろう
フェル基準に応えてきた地雷さんスゲーわw
いや、理解できないほうがふつうだと思うが。
誰かさんみたいのが標準なら、世の中とうに滅んでる。
New Style Classes>
New style classes were introduced in python 2.2. A new-style class is a class that has a built-in as its base, most commonly object. At a low level, a major difference between old and new classes is their type. Old class instances were all of type instance. New style class instances will return the same thing as x.__class__ for their type. This puts user defined classes on a level playing field with built-ins. Old/Classic classes are slated to disappear in Python 3. With this in mind all development should use new style classes. New Style classes also add constructs like properties and static methods familiar to Java programmers.
python101
by Michael Driscoll said, class className(object): is python 2.x style, class className: is python 3.x style.
other web pages dont say about (object) style.