- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
此代码来自 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 :
如果 SizedString 是 Descriptor 的实例(基于继承层次结构 - String、Typed、MaxSized、Descriptor),那么 String 和 Integer 也应该满足 If 条件,对吗?因为最后它也是 (typed, Descriptor) 的子类?
抱歉上下文冗长,但希望尽可能清楚。
最佳答案
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
函数的内容。仔细看看 name
和 share
关键字参数的值是什么:
@check_attributes(name=String,shares=Integer,place=SizedString('tester',size=8))
注意到 String
和 Integer
类名后缺少括号了吗?这意味着 String
和 Integer
类对象本身 被传递到 check_attributes
,而不是任何一个类的实例。并且由于 String
类对象和 Integer
类对象不是 Descriptor
的子类,isinstance(value, Descriptor)
失败。
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/
Integer.class、int.class 和 Integer.TYPE 之间有什么区别?我对这三者有点困惑。 最佳答案 i 是 int 还是 Integer: Integer.class.isI
a='aaaa' print isinstance(a, basestring)#true print isinstance(a, str)#true 最佳答案 在 3.0 之前的 Python 版本
我有一个名为 Route 的类(具有自己的 __repr__() 函数),以及一个名为 default_route 的 Route 实例。但是,如果我调用 isinstance(default_rou
以下是我的代码,可以正常编译,但在运行时遇到案例 2 的 ClassNotFoundException ,我的问题是为什么我在案例 2 中遇到错误: 案例1 命令java Var Var 输出假 案例
我使用 scrapy 0.20 和 python 2.7 这是我的代码 def process_spider_output(self, response, result, spider): p
Python 深入“PyPDF2.generic.Destination”的嵌套列表并列出对象以到达列表的最后一个实例的最有效方法是什么?(获取 PDF 大纲的所有级别及其页码)。 pdfread =
我观察到一个涉及对象“AuditResult”的奇怪现象,我希望有人能帮助我理解。我有一个这样设置的模块: model\ __init__.py common.py (AuditResult
我对 isinstance() 在 Python 中的工作方式有些迷惑。我以前用过这个函数,直到现在,行为还是很清楚的。 一些上下文。我有一个 Classifier 类,它有一个方法 set_kern
此代码来自 python cook book 第 3 版,来自 classes chapter section 8.13 。该程序试图定义各种数据结构,但希望对允许分配给某些属性的值实现约束。我正在使
我有一个我写的类,MyEdge(它存储两个节点来为某些图形创建边),我正在努力弄清楚为什么 isinstance 似乎表现不一致。 我有一个对象 new_road,当我询问它时,它认为它在 MyEdg
如果任何参数是 np.ndarray,我有一个函数需要采用不同的路径。我正在检查 isinstance .但我想知道是否有比将列表理解与 any 一起使用更直观(和更快)的方法: def func(a
某些类在类级别(在 __init__ 或任何其他函数之外)定义其属性(也称为字段)。有些类在其 __init__ 函数中定义它们,甚至从其他函数中定义它们。有些类(class)同时使用这两种方法。 c
我正在更改单元测试涵盖的一些代码。在单元测试中会发生这样的事情: def create_object(cls, arg1=None, arg2=None, arg3=None, **kwargs):
我不明白为什么 isinstance 函数作为第二个参数需要一个元组而不是一些可迭代的? isinstance(some_object, (some_class1, some_class2)) 工作正
def convBin(): cont = [] rest = [] dev = [] decimal = [] print("Give me a number
我定义了一个 Time 类,它具有三个 int 属性:hrs、min、sec 然后我定义了方法 intToTime() 将 Time 实例转换为 int,这是当时的秒数,还有一个执行相反操作的方法 t
我在模块 Factor.py ( https://github.com/pgmpy/pgmpy/blob/dev/pgmpy/factors/Factor.py ) 中有一个名为 Factor 的类,
type()函数: 使用type()函数可以判断对象的类型,如果一个变量指向了函数或类,也可以用type判断。 如: python" id="highl
当处理整数时,有多种类型可用(例如 int、numpy.int8、numpy.int16 等)。如果我编写一个要求一个变量为整数的通用函数,我如何针对 Python/numpy 中所有可能的“整数”类
(编辑标题,因为答案适用于任何类,而不仅仅是 cython 类) 我正在开发对性能有非常严格限制的扩展类型,我对结果很满意。 我发现对于基本上是限制为 0 < 值 < 360 的 float 的类型,
我是一名优秀的程序员,十分优秀!