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

类的定义

时间:2019-01-15 00:57:31      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:elf   object   div   foo   int   init   self   定义   col   

class Foo:
    def __init__(self, x):
        self.x = x


print(Foo)


def __init__(self,x):
    self.x = x


FFo = type(FFo,(object,), {__init__: __init__})
print(FFo)
print(FFo.__dict__)

f = FFo(1)
print(f.x)

 

类的定义

标签:elf   object   div   foo   int   init   self   定义   col   

原文地址:https://www.cnblogs.com/majianyu/p/10269426.html

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