zoukankan      html  css  js  c++  java
  • __init__构造函数

    # -*- coding: utf-8 -*-
    class Document():
        def __init__(self, title, author, context):
         print('init function called')
         self.name='xxx'
    
    
    
    harry_potter_book = Document('Harry Potter', 'J. K. Rowling', '... Forever Do not believe any thing is capable of thinking independently ...')
    
    print(harry_potter_book.name)
    
    C:Python27python.exe "C:/Users/TLCB/PycharmProjects/untitled2/python study/t15.py"
    init function called
    xxx
    
    
    如果去掉__init__:
    
    # -*- coding: utf-8 -*-
    class Document():
        # def __init__(self, title, author, context):
         print('init function called')
         self.name='xxx'
    
    
    
    harry_potter_book = Document('Harry Potter', 'J. K. Rowling', '... Forever Do not believe any thing is capable of thinking independently ...')
    
    print(harry_potter_book.name)
    
    C:Python27python.exe "C:/Users/TLCB/PycharmProjects/untitled2/python study/t15.py"
    init function called
    Traceback (most recent call last):
      File "C:/Users/TLCB/PycharmProjects/untitled2/python study/t15.py", line 2, in <module>
        class Document():
      File "C:/Users/TLCB/PycharmProjects/untitled2/python study/t15.py", line 5, in Document
        self.name='xxx'
    NameError: name 'self' is not defined
  • 相关阅读:
    PHP面试系列之Linux(一) ----- Linux基础
    Redis入门(一)---安装
    获取主机ip地址
    Ubuntu安装Apache
    Ubuntu安装MySQL/MariaDB
    Ubuntu安装PHP7
    shell一次性执行多条命令
    将宿主主机上的目录挂载到Docker中
    bind 仿造 重写bind
    echars 饼状图 轮循 水平翻转
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13348367.html
Copyright © 2011-2022 走看看