gpt4 book ai didi

用于类和子类的 Python IsInstance()

转载 作者:行者123 更新时间:2023-11-28 17:06:56 28 4
gpt4 key购买 nike

此代码来自 python cook book 第 3 版,来自 classes chapter section 8.13 。该程序试图定义各种数据结构,但希望对允许分配给某些属性的值实现约束。我正在使用 Pycharm IDE 在 python 2.7 中执行程序。

# Base class. Uses a descriptor to set a value
class Descriptor(object):
def __init__(self, name=None, **opts):
self.name = name
for key, value in opts.items():
setattr(self, key, value)

def __set__(self, instance, value):
instance.__dict__[self.name] = value

# Descriptor for enforcing types
class Typed(Descriptor):
expected_type = type(None)
def __set__(self, instance, value):
if not isinstance(value, self.expected_type):
raise TypeError('expected ' + str(self.expected_type))
super(Typed,self).__set__(instance, value)

class Integer(Typed):
expected_type = int

class String(Typed):
expected_type = str

class MaxSized(Descriptor):
def __init__(self, name=None, **opts):
if 'size' not in opts:
raise TypeError('missing size option')
super(MaxSized,self).__init__(name, **opts)

def __set__(self, instance, value):
if len(value) >= self.size:
raise ValueError('size must be < ' + str(self.size))
super(MaxSized,self).__set__(instance, value)


class SizedString(String, MaxSized):
pass

# Class decorator to apply constraints
def check_attributes(**kwargs):
def decorate(cls):
for key, value in kwargs.items():
if isinstance(value, Descriptor):
value.name = key
setattr(cls, key, value)
else:
setattr(cls, key, value(key))
return cls
return decorate

# Example
@check_attributes(name=String,shares=Integer,place=SizedString('tester',size=8))
class Stock(object):
def __init__(self, stkname, stkqty,stkhq):
self.name = stkname
self.shares = stkqty
self.place = stkhq

执行以下初始化代码时,

s = Stock('ACME', 50,'hky')
print s.name # print ACME
print s.shares # prints 50
print s.place # prints hky

Condition:

当为 @check_attributes place=SizedString('tester',size=8) 调试下面的代码时,下面的 if 条件为 True,而对于 name=String and shares=Integer , else 条件为 True.

       if isinstance(value, Descriptor):
value.name = key
setattr(cls, key, value)
else:
setattr(cls, key, value(key))

Questions :

  1. 如果 SizedString 是 Descriptor 的实例(基于继承层次结构 - String、Typed、MaxSized、Descriptor),那么 String 和 Integer 也应该满足 If 条件,对吗?因为最后它也是 (typed, Descriptor) 的子类?

    1. setattr(cls, key, value(key)) 中的 value(key) 是什么意思,无法理解 value(key) 是什么意思?

抱歉上下文冗长,但希望尽可能清楚。

最佳答案

  1. If SizedString is an instance of Descriptor ( based on Inheritance hierarchy- String , Typed , MaxSized, Descriptor ), then String and Integer also should satisfy the If condition right ? because at the end it is also the subclass of ( typed , Descriptor ) ?

    我们必须仔细查看传递给 check_attributes 函数的内容。仔细看看 nameshare 关键字参数的值是什么:

    @check_attributes(name=String,shares=Integer,place=SizedString('tester',size=8))

    注意到 StringInteger 类名后缺少括号了吗?这意味着 StringInteger 类对象本身 被传递到 check_attributes,而不是任何一个类的实例。并且由于 String 类对象和 Integer 类对象不是 Descriptor 的子类,isinstance(value, Descriptor) 失败。

  2. What is value(key) in setattr(cls, key, value(key)) means , cant understand what is value(key ) means ?

    想一想。由于 value 具有传递给 check_attributes 的任何关键字参数的值,并且该值不是 Descriptor 类的实例,那么 value 必须引用类对象。 (如果你不明白这是为什么,请引用我对你第一个问题的回答)。所以调用 value(key) 是创建某个类的实例,并将 key 值作为构造函数参数传递。

关于用于类和子类的 Python IsInstance(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50381697/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com