class cat:
# 屬性
# 方法
def eat(self):
print("貓在吃魚....")
def drink(self):
print("貓在喝可樂...")
def introduce(self):
# print("名字是:%s, 年齡是:%d" % (湯姆的名字, 湯姆的年齡))
print("名字是:%s, 年齡是:%d" % (tom.name, tom.age))
# 建立了乙個物件
tom = cat()
tom.name = "湯姆"
tom.age = 30
tom.eat()
tom.drink()
print(tom.name)
print(tom.age)
print("-"*30)
tom.introduce()
print("="*30)
# 建立了另外乙個物件
lan_mao = cat()
lan_mao.name = "藍貓"
lan_mao.age = 20
lan_mao.introduce()
建立多個物件
class cat 屬性 方法 def eat self print 貓在吃魚 def drink self print 貓在喝可樂.def introduce self print 名字是 s,年齡是 d 湯姆的名字,湯姆的年齡 print 名字是 s,年齡是 d tom.name,tom.age...
物件導向 建立多個TABSTRIP
上傳不了圖.layout上新建 tabstrip,命名 tabstrip wddomodifyview 中加入如下 method wddomodifyview if first time eq abap true.data l controller type wdy controllert.data...
js中建立多個物件的兩種方法
function createperson name,age,hobby return obj 測試 var p1 createperson 張三 22,踢足球 var p2 createperson 李四 18,打遊戲 p1.say 張三喜歡踢足球 p2.say 李四喜歡打遊戲 console.l...