在Python中使用元类创建类的新实例

发布于 2024-11-03 09:38:38 字数 160 浏览 1 评论 0原文

我想在 python 中动态创建具有特定元类的类的新实例。

我已经尝试过:

type('A', (object,  metaclass=tmp, ), {})

但不起作用:(

有人知道我如何实现这一目标吗?

I would like to create dynamically a new instance of a class with a specific metaclass in python.

I've tried this :

type('A', (object,  metaclass=tmp, ), {})

but doesn't work :(

Does anybody know how I could achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对你的占有欲 2024-11-10 09:38:38

元类通常是 type 的子类(或者很少是采用 name、bases、clsdict 作为参数的函数),因此您应该能够像 >输入。如果 tmp 是您的元类,请尝试:

tmp('A',(object,),{})

A metaclass is typically a subclass of type, (or perhaps rarely a function taking name, bases, clsdict as arguments), so you should be able to use it like type. If tmp is your metaclass, then try:

tmp('A',(object,),{})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文