Python9种方法来生成新的对象

先定义一个类:

1
2
3
4
class Point: 
 def __init__(self, x, y): 
  self.x = 
  self.y = y

下面我们使用9种方法来生成新的对象:

1
2
3
4
5
6
7
8
9
point1 = Point(12
point2 = eval("{}({}, {})".format("Point"12)) 
point3 = globals()["Point"](12
point4 = locals()["Point"](12
point5 = getattr(sys.modules[__name__], "Point")(12
point6 = copy.deepcopy(point1) 
point7 = point1.__class__(12
point8 = type('Point', (Point, ), {})(12)
point9 = types.new_class('Point', (Point, ), {})(12)

PS: 需要导入sys和types模块·

© 版权声明
THE END
喜欢就支持一下吧
点赞10 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容