- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在我正在处理的问题中,数据标识符的形式为 scope:name
,既是 scope
又是 name
字符串. name
由点分隔的不同部分,如 part1.part2.part3.part4.part5
。在很多情况下,但并非总是如此,scope
等于 name
的 part1
。我正在编写的代码必须与提供或需要不同模式标识符的不同系统一起使用。有时他们只需要完整的字符串表示形式,如 scope:name
,在其他一些情况下调用有两个不同的参数 scope
和 name
。当从其他系统接收信息时,有时返回完整的字符串 scope:name
,有时 scope
被省略,应该从 name
推断,有时返回包含 scope
和 name
的字典。
为了简化这些标识符的使用,我创建了一个类来在内部管理它们,这样我就不必一遍又一遍地编写相同的转换、拆分和格式。类(class)很简单。它只有两个属性(scope
和name
,一个将字符串解析为类对象的方法,以及一些表示对象的魔术方法特别是,__str__( self)
以 scope:name
形式返回对象,它是标识符的完全限定名 (fqn):
class DID(object):
"""Represent a data identifier."""
def __init__(self, scope, name):
self.scope = scope
self.name = name
@classmethod
def parse(cls, s, auto_scope=False):
"""Create a DID object given its string representation.
Parameters
----------
s : str
The string, i.e. 'scope:name', or 'name' if auto_scope is True.
auto_scope : bool, optional
If True, and when no scope is provided, the scope will be set to
the projectname. Default False.
Returns
-------
DID
The DID object that represents the given fully qualified name.
"""
if isinstance(s, basestring):
arr = s.split(':', 2)
else:
raise TypeError('string expected.')
if len(arr) == 1:
if auto_scope:
return cls(s.split('.', 1)[0], s)
else:
raise ValueError(
"Expecting 'scope:name' when auto_scope is False"
)
elif len(arr) == 2:
return cls(*arr)
else:
raise ValueError("Too many ':'")
def __repr__(self):
return "DID(scope='{0.scope}', name='{0.name}')".format(self)
def __str__(self):
return u'{0.scope}:{0.name}'.format(self)
正如我所说,代码必须执行与字符串的比较并使用某些方法的字符串表示。我很想编写 __eq__
魔术方法及其对应的 __ne__
。以下是 __eq__
的实现:
# APPROACH 1:
def __eq__(self, other):
if isinstance(other, self.__class__):
return self.scope == other.scope and self.name == other.name
elif isinstance(other, basestring):
return str(self) == other
else:
return False
如您所见,它以一种可以相互比较的方式定义了 DID 和字符串之间的相等性比较。 我的问题是这是否是一种好的做法:
一方面,当 other
是一个字符串时,该方法将 self
转换为一个字符串,我一直在思考显式优于隐式 em>。您最终可能会认为您正在使用两个字符串,而 self 不是这种情况。
另一方面,从意义的角度来看,DID
代表 fqn scope:name
并且与字符串比较是否相等是有意义的,因为它在比较 int 和 float 或比较从 basetring
派生的任何两个对象时执行。
我也考虑过在实现中不包括 basestring 的情况,但对我来说这更糟并且容易出错:
# APPROACH 2:
def __eq__(self, other):
if isinstance(other, self.__class__):
return self.scope == other.scope and self.name == other.name
else:
return False
在方法 2 中,比较 DID 对象和字符串之间的相等性,两者都表示相同的标识符,返回 False
。对我来说,这更容易出错。
在这种情况下,最佳做法是什么?是否应该像方法 1 中那样实现 DID 和字符串之间的比较,即使来自不同类型的对象可能被认为是相等的?即使 s != DID.parse(s)
我也应该使用方法 2 吗?我不应该实现 __eq__
和 __ne__
以便永远不会被误解吗?
最佳答案
Python 中的几个类(但我想不出标准库中的任何东西)定义了一个处理 RHS 上多种类型的相等运算符。一个支持这一点的通用库是 NumPy,其中:
import numpy as np
np.array(1) == 1
评估为 True
。总的来说,我认为我不鼓励这种事情,因为在很多极端情况下,这种行为可能会变得棘手。例如。请参阅 Python 3 中的文章 __hash__
方法(类似的东西存在于 Python 2 中,但它已经过时了)。在我编写过类似代码的情况下,我往往会得到更接近于以下内容的代码:
def __eq__(self, other):
if isinstance(other, str):
try:
other = self.parse(str)
except ValueError:
return NotImplemented
if isinstance(other, DID):
return self.scope == other.scope and self.name == other.name
return NotImplemented
除此之外,我建议将此类对象设置为不可变对象(immutable对象),您可以通过多种方式实现。 Python 3 有不错的 dataclasses ,但鉴于您似乎被困在 Python 2 下,您可能会使用 namedtuple
,例如:
from collections import namedtuple
class DID(namedtuple('DID', ('scope', 'name'))):
__slots__ = ()
@classmethod
def parse(cls, s, auto_scope=False):
return cls('foo', 'bar')
def __eq__(self, other):
if isinstance(other, str):
try:
other = self.parse(str)
except ValueError:
return NotImplemented
return super(DID, self).__eq__(other)
它免费为您提供不变性和 repr 方法,但您可能希望保留自己的 str 方法。 __slots__
属性意味着意外分配给 obj.scopes
会失败,但您可能希望允许这种行为。
关于python - __eq__ 应该比较两种不同类型的对象吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57143808/
我正在尝试在Elasticsearch中返回的值中考虑地理位置的接近性。我希望近距离比某些字段(例如legal_name)重要,但比其他字段重要。 从文档看来,当前的方法是使用distance_fea
我是Elasticsearch的初学者,今天在进行“多与或”查询时遇到问题。 我有一个SQL查询,需要在Elastic中进行转换: WHERE host_id = 999 AND psh_pid =
智能指针应该/可以在函数中通过引用传递吗? 即: void foo(const std::weak_ptr& x) 最佳答案 当然你可以通过const&传递一个智能指针。 这样做也是有原因的: 如果接
我想执行与以下MYSQL查询等效的查询 SELECT http_user, http_req_method, dst dst_port count(*) as total FROM my_table
我用这两个查询进行测试 用must查询 { "size": 200, "from": 0, "query": { "bool": { "must": [ { "mat
我仍在研究 Pro Android 2 的简短服务示例(第 304 页)同样,服务示例由两个类组成:如下所示的 BackgroundService.java 和如下所示的 MainActivity.j
给定标记 like this : header really_wide_table..........................................
根据 shouldJS 上的文档网站我应该能够做到这一点: ''.should.be.empty(); ChaiJS网站没有使用 should 语法的示例,但它列出了 expect 并且上面的示例似乎
我在 Stack Overflow 上读到一些 C 函数是“过时的”或“应该避免”。你能给我一些这种功能的例子以及原因吗? 这些功能有哪些替代方案? 我们可以安全地使用它们 - 有什么好的做法吗? 最
在 C++11 中,可变参数模板允许使用任意数量的参数和省略号运算符 ... 调用函数。允许该可变参数函数对每个参数做一些事情,即使每个参数的事情不是一样的: template void dummy(
我在我从事的项目之一上将Shoulda与Test::Unit结合使用。我遇到的问题是我最近更改了此设置: class MyModel :update end 以前,我的(通过)测试看起来像这样: c
我该如何做 or使用 chai.should 进行测试? 例如就像是 total.should.equal(4).or.equal(5) 或者 total.should.equal.any(4,5)
如果您要将存储库 B 中的更改 merge 到存储库 A 中,是否应该 merge .hgtags 中的更改? 存储库 B 可能具有 A 中没有的标签 1.01、1.02、1.03。为什么要将这些 m
我正在尝试执行X AND(y OR z)的查询 我需要获得该代理为上市代理或卖方的所有已售属性(property)。 我只用 bool(boolean) 值就可以得到9324个结果。当我添加 bool
我要离开 this教程,尝试使用 Mocha、Supertest 和 Should.js 进行测试。 我有以下基本测试来通过 PUT 创建用户接受 header 中数据的端点。 describe('U
我正在尝试为 Web 应用程序编写一些 UI 测试,但有一些复杂的问题希望您能帮助我解决。 首先,该应用程序有两种模式。其中一种模式是“训练”,另一种是“现场”。在实时模式下,数据直接从我们的数据库中
我有一个规范: require 'spec_helper' # hmm... I need to include it here because if I include it inside desc
我正在尝试用这个测试我在 Rails 中的更新操作: context "on PUT to :update" do setup do @countdown = Factory(:count
我还没有找到合适的答案: onclick="..." 中是否应该转义 &(& 符号)? (或者就此而言,在每个 HTML 属性中?) 我已经尝试在 jsFiddle 和 W3C 的验证器上运行转义和非
import java.applet.*; import java.awt.*; import java.awt.event.*; public class Main extends Applet i
我是一名优秀的程序员,十分优秀!