欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python面向对象之类的定义与继承用法示例

程序员文章站 2023-10-21 23:53:38
本文实例讲述了python面向对象之类的定义与继承用法。分享给大家供大家参考,具体如下: 定义一个类 类中的方法同,类外方法,默认传self值 类的构造函数是&nbs...

本文实例讲述了python面向对象之类的定义与继承用法。分享给大家供大家参考,具体如下:

定义一个类

类中的方法同,类外方法,默认传self

类的构造函数是  __init__

# -*- coding:utf-8 -*-
class hello:
  def __init__(self,name):
    self.name=name
   def sayhello(self):
    print ("hello python {0}".format(self.name))
h=hello("newer")
h.sayhello()

运行结果:

hello python newer

继承

例子:注意父类构造函数和继承格式的书写

# -*- coding:utf-8 -*-
class hello:
  def __init__(self,name):
    self.name=name
  def sayhello(self):
    print ("hello python {0}".format(self.name))
class hi(hello):
  def __init__(self,name):
    hello.__init__(self,name)
  def sayhi(self):
    print ("hi {0}".format(self.name))
h1=hi("newer")
h1.sayhi()

运行结果:

hi newer

更多关于python相关内容感兴趣的读者可查看本站专题:《python面向对象程序设计入门与进阶教程》、《python数据结构与算法教程》、《python函数使用技巧总结》、《python字符串操作技巧汇总》、《python编码操作技巧总结》及《python入门与进阶经典教程

希望本文所述对大家python程序设计有所帮助。