码迷,mamicode.com
首页 > 其他好文 > 详细

面向对象-类与实例化对象

时间:2018-04-17 13:11:07      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:分类   pre   ping   面向   世界   int   tin   技术分享   self   

类:

一系列对象相似特征与技能的结合体

注:站在不同角度,分类不一样

在现实世界中:一定先有对象,再有类

在程序中:一定需先有类,再有对象

定义类并实例化对象:

#定义类
class LuffyStudent:
        school=luffycity
        def learn(self):
            print(is learning)
        def eat(self):
            print(is eating)
        def sleep(self):
            print(is sleeping)
#实例化对象
stu1=LuffyStudent()
stu2=LuffyStudent()
stu3=LuffyStudent()
print(stu1)
print(stu2)
print(stu3)

技术分享图片

 

 

面向对象-类与实例化对象

标签:分类   pre   ping   面向   世界   int   tin   技术分享   self   

原文地址:https://www.cnblogs.com/yaya625202/p/8863527.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!