在Python中运行时创建对象

发布于 2024-11-04 15:00:14 字数 724 浏览 1 评论 0原文

如何在 python 中运行时创建对象实例?

假设我有 2 个类:

class MyClassA(object):
    def __init__(self, prop):
        self.prop = prop
        self.name = "CLASS A"

    def println(self):
        print self.name


class MyClassB(object):
    def __init__(self, prop):
        self.prop = prop
        self.name = "CLASS B"

    def println(self):
        print self.name

以及一个字典,

{('a': MyClassA), ('b': MyClassB)}

我如何创建两个类之一的动态实例,具体取决于我选择“a”或“b”。

类似这样:

somefunc(str):
    if 'a': return new MyClassA
    if 'b': return new MyClassB

在调用时获得“CLASS B”: somefunc('a').println

但以更优雅和动态的方式(假设我在运行时向字典添加更多类)

how do i create object-instances on runtime in python?

say i have 2 classes:

class MyClassA(object):
    def __init__(self, prop):
        self.prop = prop
        self.name = "CLASS A"

    def println(self):
        print self.name


class MyClassB(object):
    def __init__(self, prop):
        self.prop = prop
        self.name = "CLASS B"

    def println(self):
        print self.name

and a dict

{('a': MyClassA), ('b': MyClassB)}

how can i create dynamic an instance of one of my two classes, depending of i choose 'a' or 'b'.

kind of this:

somefunc(str):
    if 'a': return new MyClassA
    if 'b': return new MyClassB

to get "CLASS B" on calling: somefunc('a').println

but in a more elegant and dynamic way (say i add more classes to the dict on runtime)

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

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

发布评论

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

评论(2

情独悲 2024-11-11 15:00:14

您可以创建一个调度程序,它是一个字典,其中的键映射到类。

dispatch = {
    "a": MyClassA,
    "b": MyClassB,
}

instance = dispatch[which_one]() # Notice the second pair of parens here!

You might create a dispatcher, which is a dictionary with your keys mapping to classes.

dispatch = {
    "a": MyClassA,
    "b": MyClassB,
}

instance = dispatch[which_one]() # Notice the second pair of parens here!
素衣风尘叹 2024-11-11 15:00:14

您可以通过调用类来创建类实例。您的类字典 {('a': MyClassA), ('b': MyClassB)} 返回类;所以你只需要给班级打电话:

classes['a']()

但我感觉到你想要更具体的东西。这是 dict 的子类,当使用键调用时,它会查找关联的项目并调用它:

>>> class ClassMap(dict):
...     def __call__(self, key, *args, **kwargs):
...         return self.__getitem__(key)(*args, **kwargs)
... 
>>> c = ClassMap()
>>> c['a'] = A
>>> c['b'] = B
>>> c('a')
<__main__.A object at 0x1004cc7d0>

You create a class instance by calling the class. Your class dict {('a': MyClassA), ('b': MyClassB)} returns classes; so you need only call the class:

classes['a']()

But I get the sense you want something more specific. Here's a subclass of dict that, when called with a key, looks up the associated item and calls it:

>>> class ClassMap(dict):
...     def __call__(self, key, *args, **kwargs):
...         return self.__getitem__(key)(*args, **kwargs)
... 
>>> c = ClassMap()
>>> c['a'] = A
>>> c['b'] = B
>>> c('a')
<__main__.A object at 0x1004cc7d0>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文