作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我有这个枚举来存储所有不同的实体类型
class Entities(Enum):
TREE = auto()
ROCK = auto()
FLOWER = auto()
我想创建一个函数,它采用这些(TREE、ROCK...)枚举之一,并且知道一个枚举对应于我拥有的一个类。例如:
def myFunc(EntityType):
return type(EntityType)
print(myFunc(Entities.ROCK))
>>>ROCK (where ROCK is an instance of the ROCK class)
如果有办法做到这一点,有没有一种方法,甚至可以初始化类例如:
def myFunc(EntityType):
myObj = EntityType(pos=(0,0))
return myObj
最佳答案
如果您放弃 auto
并使用类本身作为 Entities
的值会怎么样?假设 Tree
、Rock
和 Flower
是您的类的名称:
class Entities(Enum):
TREE = Tree
ROCK = Rock
FLOWER = Flower
这里的 Entities.TREE.value
是 Tree
的类构造函数。
关于python - 如何使枚举指向一个类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69065162/
我是一名优秀的程序员,十分优秀!