python中物件導向的知識:參考部落格:
知識概念和c++大體類似,但是也有一些不同的地方需要注意:
如:
一、python中例項化結果,建立類,例如:
class a:
def prt(self):
print(self)
print(self.__class__)
#例項化來建立物件
t = a()
t.prt()
二、注意在c++中建立物件,通過new來建立,但是python中類的例項化是類似函式呼叫來實現的
如:
建立 employee 類的第乙個物件"
emp1 = employee("zara", 2000)
"建立 employee 類的第二個物件"
emp2 = employee("manni", 5000)
三、以下是建立python類,並實現呼叫的例項:
#!/usr/bin/python
# -*- coding: utf-8 -*-
class employee:
#'所有員工的基類'
empcount = 0
def __init__(self, name, salary):
self.name = name
self.salary = salary
employee.empcount += 1
def displaycount(self):
print ("total employee %d" % employee.empcount)
def displayemployee(self):
print ("name : ", self.name, ", salary: ", self.salary)
#"建立 employee 類的第乙個物件"
emp1 = employee("zara", 2000)
#"建立 employee 類的第二個物件"
emp2 = employee("manni", 5000)
emp1.displayemployee()
emp2.displayemployee()
print ("total employee %d" % employee.empcount)
四、python中的類的例項化
例項化**:
class student():
student_count = 0
def __init__(self, name, salary):
self.name = name
self.age = salary
student.student_count += 1
def display_count(self):
print('total student {}'.format(student.student_count))
def display_student(self):
print('name: {}, age: {}'.format(self.name,self.age))
def get_class(self):
if self.age >= 7 and self.age < 8:
return 1
if self.age >= 8 and self.age < 9:
return 2
if self.age >= 9 and self.age < 10:
return 3
if self.age >= 10 and self.age < 11:
return 4
else:
return 0
# 建立類的物件(例項化類)
# python中例項化類不需要使用關鍵字new(也沒有這個關鍵字),類的例項化類似函式呼叫方式。
student1 = student('cuiyongyuan',10)
student2 = student('yuanli', 10)
student1.display_student()
student2.display_student()
#student1.get_class()
#student1.display_count()
#student2.display_count()
#student2.get_class()
student1_class = student1.get_class()
student2_class = student2.get_class()
print(student1_class)
Python定義類與建立物件
目錄 1.定義類 2.建立與使用物件 物件也稱為例項 1 增加或刪除例項變數 2 增加例項方法 物件導向程式設計的三大特徵 封裝 繼承 多型 語法格式 語法格式 class 類名 執行語句.類變數.方法.類名 乙個或者多個單詞連線而成,每個單詞首字母大寫,其餘字母全部小寫,單詞與單詞之間不使用分隔符...
oc中建立類和物件
一 建立類,得到物件 例1 1.新建乙個people類 繼承nsobject,得到 people.h和people.m以及main.m三個檔案 2.在main.m中,進行 物件化 專業來講也就是 例項化 如下 1 在這裡 號代表指標的意思。2 號在oc中表示呼叫方法,包括兩種 類名 方法名 和 物件...
建立類 物件
二 用大括號建立物件 三 定義多個變數 四 引用 class number 構造方法 class number 例項方法 num 例項化物件 構造方法 class number 例項方法 num 例項化物件 var n1 newnumber 1 2 n1.num 1 console.log n1.i...