第二阶段 第一章 面向对象

1 类

1.1 类的成员方法

1.1.1 类的成员

  • 设计表格,称之为:设计类(class)
  • 打印表格,称之为:创建对象
  • 填写表格,称之为:对象属性赋值
python 复制代码
# 1.设计类(类比生活中: 设计一张登记表)
class Student:	
	name = None				#记录学生姓名
	gender = None			#记录学生性别
	nationality = None		#记录学生国籍
	native_place = None		#记学生籍贯
	age = None

# 2.创建对象(类比生活中: 打印一张登记表)
stu_1 = Student()

# 3.对象属性赋值(类比生活中:填写表单)
stu_1.name = "林俊杰"
stu_1.gender = "男"
stu_1.nationality = "中国"
stu_1.native_place = "山东省"
stu_1.age = 31

# 4. 获取对象中记录的信息
print(stu_1.name)
print(stu_1.gender)
print(stu_1.nationality)
print(stu_1.native_place)
print(stu_1.age)
python 复制代码
林俊杰
男
中国
山东省
31

1.1.2 类的方法

python 复制代码
# 定义一个带有成员方法的类
class Student:
	name = None
	
	def say_hi(self):
		print(f"大家好呀,我是{self.name},欢迎大家多多关照")
	def say_hi2(self, msg):
		print(f"大家好呀,我是{self.name},{msg}")

stu = Student()
stu.name = "周杰伦"
stu.say_hi()
stu.say_hi2("哎呦不错哟")

stu2 = Student()
stu2.name = "林俊杰"
stu2.say_hi("小伙子我看好你")

1.2 类和对象

python 复制代码
# 设计一个闹钟类
class Clock:
	id = None
	price = None
	
	def ring(self):
		import winsound
		winsound.Beep(2000, 3000) #2000表示频率,3000表示持续时间(毫秒)
		
# 构建2个闹钟对象并让其工作
clock1 = Clock()
clock1.id = "003032"
clock1.price = 19.99
print(f"闹钟ID:{clock1.id},价格:{clock1.price}")
clock1.ring()

clock2 = Clock()
clock2.id = "003033"
clock2.price = 21.99
print(f"闹钟ID:{clock1.id},价格:{clock1.price}")
clock2.ring()

1.3 构造方法__init__

python 复制代码
# 构造方法的名称:__init__
class Student:	
	def __init__(self, name, age, tel):
		self.name = name
		self.age = age
		self.tel = tel
		print("Student类创建了一个类对象")
stu = Student("李明", 12, 12345)
print(self.name)
print(self.age)
print(self.tel)
python 复制代码
# 构造方法的名称:__init__
class Student:	
	name = None
    age - None
    tel = None
	def __init__(self, name, age, tel):
		self.name = name
		self.age = age
		self.tel = tel
		print("Student类创建了一个类对象")
stu = Student("李明", 12, 12345)
print(self.name)
print(self.age)
print(self.tel)

1.4 案例 学生信息录入

python 复制代码
class Student:
	def __init__(self, name, age, address):
		self.name = name
		self.age = age
		self.address = address
stu_list = []
count = input()
for i in range(1, count + 1):
	print(f"当前录入第{i}位学生信息,总共需录入{count}位学生信息")
	stu_name = input("请输入学生姓名:")
	stu_age = input("请输入学生年龄:")
	stu_add = input("请输入学生地址:")
	stu = Student(stu_name, stu_age, stu_add)
	stu_list.append(stu)
	stu_data = stu_list[i - 1]
	print(f"学生1信息录入完成,信息为:【学生姓名:{stu_data.name},年龄:{stu_data.age},地址:{stu_data.address}】")

1.5 魔术方法

1.5.1 str

python 复制代码
class Student:
	def __init__(self, name, age):
		self.name = name
		self.age = age
	def __str__(self):
		return f"Student类对象,name:{self.name},age:{self.age}"
	
stu = Student("李明", 12)
print(stu)
print(str(stu))

1.5.2 lt

python 复制代码
class Student:
	def __init__(self, name, age):
		self.name = name
		self.age = age
	def __lt__(self, other):
		return self.age < other.age
	
stu1 = Student("李明", 12)
stu2 = Student("林俊杰", 14)
print(stu1 < stu2)

1.5.3 le

python 复制代码
class Student:
	def __init__(self, name, age):
		self.name = name
		self.age = age
	def __le__(self, other):
		return self.age <= other.age
	
stu1 = Student("李明", 14)
stu2 = Student("林俊杰", 12)
print(stu1 >= stu2)

1.5.4 eq

python 复制代码
class Student:
	def __init__(self, name, age):
		self.name = name
		self.age = age
	def __eq__(self, other):
		return self.age <= other.age
	
stu1 = Student("李明", 14)
stu2 = Student("林俊杰", 14)
print(stu1 == stu2)
相关推荐
Stringzhua3 分钟前
Vue数据的变更操作与表单数据的收集【6】
前端·javascript·vue.js
万少13 分钟前
可可图片编辑 HarmonyOS 上架应用分享
前端·harmonyos
羊锦磊33 分钟前
[ Servlet 服务器]
运维·服务器·servlet
你的人类朋友35 分钟前
git常见操作整理(持续更新)
前端·git·后端
无羡仙36 分钟前
Webpack 核心实战:从零搭建支持热更新与 Babel 转译的现代前端环境
前端·webpack·前端框架
你的人类朋友1 小时前
git中的Fast-Forward是什么?
前端·git·后端
C4程序员1 小时前
北京JAVA基础面试30天打卡14
java·开发语言·面试
初遇你时动了情1 小时前
uniapp vue3 ts自定义底部 tabbar菜单
前端·javascript·uni-app
tb_first1 小时前
k8sday13数据存储(1.5/2)
linux·运维·服务器·云原生·容器·kubernetes
JarvanMo1 小时前
天塌了?Flutter工程总监跑去苹果了?
前端