Python 入門指南 V2.00 - 單元 13 範例及練習程式碼

class_demo10.py


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
"""An example of the Demo class.
 
   This module demonstrates the docstring.
"""
 
# This is a comment of a class.
class Demo:
   """A docsting of the class."""
   # This is a comment of the method.
   def __init__(self, v1=11, v2=22):
      """A docsting of the __init__."""
      self.__a = v1
      self.__b = v2
    
   # This is a comment of a method.
   def do_something(self):
      """A docsting of a method."""
      return self.__a + self.__b
 
if __name__ == "__main__":
   d = Demo(12, 34)
   print(d.do_something())
  
# 檔名: class_demo10.py
# 作者: Kaiching Chang
# 時間: July, 2014

the end

沒有留言: