René's URL Explorer Experiment


Title: 9. Class(類別) — Python 3.14.0 說明文件

direct link

Domain: python.github.io

readthedocs-addons-api-version1

Links:

https://www.python.org/
目錄https://python.github.io/python-docs-zh-tw/contents.html
9. Class(類別)https://python.github.io/python-docs-zh-tw/tutorial/classes.html
9.1. 關於名稱與物件的一段話https://python.github.io/python-docs-zh-tw/tutorial/classes.html#a-word-about-names-and-objects
9.2. Python 作用域 (Scope) 及命名空間 (Namespace)https://python.github.io/python-docs-zh-tw/tutorial/classes.html#python-scopes-and-namespaces
9.2.1. 作用域和命名空間的範例https://python.github.io/python-docs-zh-tw/tutorial/classes.html#scopes-and-namespaces-example
9.3. 初見 classhttps://python.github.io/python-docs-zh-tw/tutorial/classes.html#a-first-look-at-classes
9.3.1. Class definition(類別定義)語法https://python.github.io/python-docs-zh-tw/tutorial/classes.html#class-definition-syntax
9.3.2. Class 物件https://python.github.io/python-docs-zh-tw/tutorial/classes.html#class-objects
9.3.3. 實例物件https://python.github.io/python-docs-zh-tw/tutorial/classes.html#instance-objects
9.3.4. Method 物件https://python.github.io/python-docs-zh-tw/tutorial/classes.html#method-objects
9.3.5. Class 及實例變數https://python.github.io/python-docs-zh-tw/tutorial/classes.html#class-and-instance-variables
9.4. 隨意的備註https://python.github.io/python-docs-zh-tw/tutorial/classes.html#random-remarks
9.5. 繼承 (Inheritance)https://python.github.io/python-docs-zh-tw/tutorial/classes.html#inheritance
9.5.1. 多重繼承https://python.github.io/python-docs-zh-tw/tutorial/classes.html#multiple-inheritance
9.6. 私有變數https://python.github.io/python-docs-zh-tw/tutorial/classes.html#private-variables
9.7. 補充說明https://python.github.io/python-docs-zh-tw/tutorial/classes.html#odds-and-ends
9.8. 疊代器 (Iterator)https://python.github.io/python-docs-zh-tw/tutorial/classes.html#iterators
9.9. 產生器 (Generator)https://python.github.io/python-docs-zh-tw/tutorial/classes.html#generators
9.10. 產生器運算式https://python.github.io/python-docs-zh-tw/tutorial/classes.html#generator-expressions
8. 錯誤和例外https://python.github.io/python-docs-zh-tw/tutorial/errors.html
10. Python 標準函式庫概覽https://python.github.io/python-docs-zh-tw/tutorial/stdlib.html
回報錯誤https://python.github.io/python-docs-zh-tw/bugs.html
顯示原始碼 https://github.com/python/cpython/blob/main/Doc/tutorial/classes.rst?plain=1
索引https://python.github.io/python-docs-zh-tw/genindex.html
模組https://python.github.io/python-docs-zh-tw/py-modindex.html
下一頁https://python.github.io/python-docs-zh-tw/tutorial/stdlib.html
上一頁https://python.github.io/python-docs-zh-tw/tutorial/errors.html
Pythonhttps://www.python.org/
3.14.0 Documentationhttps://python.github.io/python-docs-zh-tw/index.html
Python 教學https://python.github.io/python-docs-zh-tw/tutorial/index.html
9. Class(類別)https://python.github.io/python-docs-zh-tw/tutorial/classes.html
https://python.github.io/python-docs-zh-tw/tutorial/classes.html#classes
私有變數https://python.github.io/python-docs-zh-tw/tutorial/classes.html#tut-private
https://python.github.io/python-docs-zh-tw/tutorial/classes.html#a-word-about-names-and-objects
https://python.github.io/python-docs-zh-tw/tutorial/classes.html#python-scopes-and-namespaces
abs()https://python.github.io/python-docs-zh-tw/library/functions.html#abs
[1]https://python.github.io/python-docs-zh-tw/tutorial/classes.html#id2
delhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#del
__main__https://python.github.io/python-docs-zh-tw/library/__main__.html#module-__main__
builtinshttps://python.github.io/python-docs-zh-tw/library/builtins.html#module-builtins
nonlocalhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#nonlocal
globalhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#global
nonlocalhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#nonlocal
importhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#import
globalhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#global
nonlocalhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#nonlocal
https://python.github.io/python-docs-zh-tw/tutorial/classes.html#scopes-and-namespaces-example
globalhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#global
nonlocalhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#nonlocal
nonlocalhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#nonlocal
globalhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#global
globalhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#global
https://python.github.io/python-docs-zh-tw/tutorial/classes.html#a-first-look-at-classes
https://python.github.io/python-docs-zh-tw/tutorial/classes.html#class-definition-syntax
defhttps://python.github.io/python-docs-zh-tw/reference/compound_stmts.html#def
ifhttps://python.github.io/python-docs-zh-tw/reference/compound_stmts.html#if
https://python.github.io/python-docs-zh-tw/tutorial/classes.html#class-objects
__doc__https://python.github.io/python-docs-zh-tw/reference/datamodel.html#type.__doc__
__init__()https://python.github.io/python-docs-zh-tw/reference/datamodel.html#object.__init__
__init__()https://python.github.io/python-docs-zh-tw/reference/datamodel.html#object.__init__
__init__()https://python.github.io/python-docs-zh-tw/reference/datamodel.html#object.__init__
https://python.github.io/python-docs-zh-tw/tutorial/classes.html#instance-objects
https://python.github.io/python-docs-zh-tw/tutorial/classes.html#method-objects
https://python.github.io/python-docs-zh-tw/tutorial/classes.html#class-and-instance-variables
關於名稱與物件的一段話https://python.github.io/python-docs-zh-tw/tutorial/classes.html#tut-object
mutablehttps://python.github.io/python-docs-zh-tw/glossary.html#term-mutable
https://python.github.io/python-docs-zh-tw/tutorial/classes.html#random-remarks
https://python.github.io/python-docs-zh-tw/tutorial/classes.html#inheritance
isinstance()https://python.github.io/python-docs-zh-tw/library/functions.html#isinstance
inthttps://python.github.io/python-docs-zh-tw/library/functions.html#int
inthttps://python.github.io/python-docs-zh-tw/library/functions.html#int
issubclass()https://python.github.io/python-docs-zh-tw/library/functions.html#issubclass
boolhttps://python.github.io/python-docs-zh-tw/library/functions.html#bool
inthttps://python.github.io/python-docs-zh-tw/library/functions.html#int
floathttps://python.github.io/python-docs-zh-tw/library/functions.html#float
inthttps://python.github.io/python-docs-zh-tw/library/functions.html#int
https://python.github.io/python-docs-zh-tw/tutorial/classes.html#multiple-inheritance
super()https://python.github.io/python-docs-zh-tw/library/functions.html#super
objecthttps://python.github.io/python-docs-zh-tw/library/functions.html#object
objecthttps://python.github.io/python-docs-zh-tw/library/functions.html#object
Python 2.3 方法解析順序https://python.github.io/python-docs-zh-tw/howto/mro.html#python-2-3-mro
https://python.github.io/python-docs-zh-tw/tutorial/classes.html#private-variables
私有名稱修飾規格https://python.github.io/python-docs-zh-tw/reference/expressions.html#private-name-mangling
https://python.github.io/python-docs-zh-tw/tutorial/classes.html#odds-and-ends
dataclasseshttps://python.github.io/python-docs-zh-tw/library/dataclasses.html#module-dataclasses
read()https://python.github.io/python-docs-zh-tw/library/io.html#io.TextIOBase.read
readline()https://python.github.io/python-docs-zh-tw/library/io.html#io.TextIOBase.readline
實例的 method 物件https://python.github.io/python-docs-zh-tw/reference/datamodel.html#instance-methods
m.__self__https://python.github.io/python-docs-zh-tw/reference/datamodel.html#method.__self__
m.__func__https://python.github.io/python-docs-zh-tw/reference/datamodel.html#method.__func__
函式物件https://python.github.io/python-docs-zh-tw/reference/datamodel.html#user-defined-funcs
https://python.github.io/python-docs-zh-tw/tutorial/classes.html#iterators
forhttps://python.github.io/python-docs-zh-tw/reference/compound_stmts.html#for
forhttps://python.github.io/python-docs-zh-tw/reference/compound_stmts.html#for
iter()https://python.github.io/python-docs-zh-tw/library/functions.html#iter
__next__()https://python.github.io/python-docs-zh-tw/library/stdtypes.html#iterator.__next__
__next__()https://python.github.io/python-docs-zh-tw/library/stdtypes.html#iterator.__next__
StopIterationhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#StopIteration
next()https://python.github.io/python-docs-zh-tw/library/functions.html#next
__next__()https://python.github.io/python-docs-zh-tw/library/stdtypes.html#iterator.__next__
__iter__()https://python.github.io/python-docs-zh-tw/library/stdtypes.html#container.__iter__
__next__()https://python.github.io/python-docs-zh-tw/library/stdtypes.html#iterator.__next__
https://python.github.io/python-docs-zh-tw/tutorial/classes.html#generators
產生器https://python.github.io/python-docs-zh-tw/glossary.html#term-generator
yieldhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#yield
next()https://python.github.io/python-docs-zh-tw/library/functions.html#next
__iter__()https://python.github.io/python-docs-zh-tw/library/stdtypes.html#iterator.__iter__
__next__()https://python.github.io/python-docs-zh-tw/reference/expressions.html#generator.__next__
StopIterationhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#StopIteration
https://python.github.io/python-docs-zh-tw/tutorial/classes.html#generator-expressions
1https://python.github.io/python-docs-zh-tw/tutorial/classes.html#id1
__dict__https://python.github.io/python-docs-zh-tw/reference/datamodel.html#object.__dict__
目錄https://python.github.io/python-docs-zh-tw/contents.html
9. Class(類別)https://python.github.io/python-docs-zh-tw/tutorial/classes.html
9.1. 關於名稱與物件的一段話https://python.github.io/python-docs-zh-tw/tutorial/classes.html#a-word-about-names-and-objects
9.2. Python 作用域 (Scope) 及命名空間 (Namespace)https://python.github.io/python-docs-zh-tw/tutorial/classes.html#python-scopes-and-namespaces
9.2.1. 作用域和命名空間的範例https://python.github.io/python-docs-zh-tw/tutorial/classes.html#scopes-and-namespaces-example
9.3. 初見 classhttps://python.github.io/python-docs-zh-tw/tutorial/classes.html#a-first-look-at-classes
9.3.1. Class definition(類別定義)語法https://python.github.io/python-docs-zh-tw/tutorial/classes.html#class-definition-syntax
9.3.2. Class 物件https://python.github.io/python-docs-zh-tw/tutorial/classes.html#class-objects
9.3.3. 實例物件https://python.github.io/python-docs-zh-tw/tutorial/classes.html#instance-objects
9.3.4. Method 物件https://python.github.io/python-docs-zh-tw/tutorial/classes.html#method-objects
9.3.5. Class 及實例變數https://python.github.io/python-docs-zh-tw/tutorial/classes.html#class-and-instance-variables
9.4. 隨意的備註https://python.github.io/python-docs-zh-tw/tutorial/classes.html#random-remarks
9.5. 繼承 (Inheritance)https://python.github.io/python-docs-zh-tw/tutorial/classes.html#inheritance
9.5.1. 多重繼承https://python.github.io/python-docs-zh-tw/tutorial/classes.html#multiple-inheritance
9.6. 私有變數https://python.github.io/python-docs-zh-tw/tutorial/classes.html#private-variables
9.7. 補充說明https://python.github.io/python-docs-zh-tw/tutorial/classes.html#odds-and-ends
9.8. 疊代器 (Iterator)https://python.github.io/python-docs-zh-tw/tutorial/classes.html#iterators
9.9. 產生器 (Generator)https://python.github.io/python-docs-zh-tw/tutorial/classes.html#generators
9.10. 產生器運算式https://python.github.io/python-docs-zh-tw/tutorial/classes.html#generator-expressions
8. 錯誤和例外https://python.github.io/python-docs-zh-tw/tutorial/errors.html
10. Python 標準函式庫概覽https://python.github.io/python-docs-zh-tw/tutorial/stdlib.html
回報錯誤https://python.github.io/python-docs-zh-tw/bugs.html
顯示原始碼 https://github.com/python/cpython/blob/main/Doc/tutorial/classes.rst?plain=1
索引https://python.github.io/python-docs-zh-tw/genindex.html
模組https://python.github.io/python-docs-zh-tw/py-modindex.html
下一頁https://python.github.io/python-docs-zh-tw/tutorial/stdlib.html
上一頁https://python.github.io/python-docs-zh-tw/tutorial/errors.html
Pythonhttps://www.python.org/
3.14.0 Documentationhttps://python.github.io/python-docs-zh-tw/index.html
Python 教學https://python.github.io/python-docs-zh-tw/tutorial/index.html
9. Class(類別)https://python.github.io/python-docs-zh-tw/tutorial/classes.html
版權所有https://python.github.io/python-docs-zh-tw/copyright.html
歷史與授權條款https://python.github.io/license.html
敬請捐贈。https://www.python.org/psf/donations/
發現 bughttps://python.github.io/bugs.html
Sphinxhttps://www.sphinx-doc.org/

Viewport: width=device-width, initial-scale=1.0


URLs of crawlers that visited me.