问题:如何在Python中从__init__返回值?
我有一个带__init__
功能的课。
创建对象时如何从该函数返回整数值?
我写了一个程序,在其中进行__init__
命令行解析,我需要设置一些值。可以在全局变量中设置它并在其他成员函数中使用它吗?如果是这样,该怎么做?到目前为止,我在课外声明了一个变量。并将其设置为一个功能不会反映在其他功能中?
回答 0
__init__
必须返回无。您不能(或至少不应该)返回其他东西。
尝试做任何您想返回的实例变量(或函数)。
>>> class Foo:
... def __init__(self):
... return 42
...
>>> foo = Foo()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: __init__() should return None
回答 1
你为什么想这么做?
如果要在调用类时返回其他对象,请使用以下__new__()
方法:
class MyClass(object):
def __init__(self):
print "never called in this case"
def __new__(cls):
return 42
obj = MyClass()
print obj
回答 2
从以下文档中__init__
:
作为对构造函数的特殊限制,不能返回任何值。这样做将导致在运行时引发TypeError。
作为证明,此代码:
class Foo(object):
def __init__(self):
return 2
f = Foo()
给出此错误:
Traceback (most recent call last):
File "test_init.py", line 5, in <module>
f = Foo()
TypeError: __init__() should return None, not 'int'
回答 3
有问题的示例用法如下:
class SampleObject(object):
def __new__(cls, item):
if cls.IsValid(item):
return super(SampleObject, cls).__new__(cls)
else:
return None
def __init__(self, item):
self.InitData(item) #large amount of data and very complex calculations
...
ValidObjects = []
for i in data:
item = SampleObject(i)
if item: # in case the i data is valid for the sample object
ValidObjects.append(item)
我没有足够的声誉,所以我无法发表评论,这太疯狂了!我希望我可以将其发布为对weronika的评论
回答 4
__init__
与其他方法和函数一样,该方法默认情况下在没有return语句的情况下返回None,因此您可以像以下任何一种一样编写它:
class Foo:
def __init__(self):
self.value=42
class Bar:
def __init__(self):
self.value=42
return None
但是,当然,添加return None
并不会给您带来任何好处。
我不确定您要追求的是什么,但是您可能会对其中之一感兴趣:
class Foo:
def __init__(self):
self.value=42
def __str__(self):
return str(self.value)
f=Foo()
print f.value
print f
印刷品:
42
42
回答 5
__init__
不返回任何东西,应该总是返回None
。
回答 6
您可以将其设置为类变量,然后从主程序中读取它:
class Foo:
def __init__(self):
#Do your stuff here
self.returncode = 42
bar = Foo()
baz = bar.returncode
回答 7
只需添加即可,您可以在 __init__
@property
def failureException(self):
class MyCustomException(AssertionError):
def __init__(self_, *args, **kwargs):
*** Your code here ***
return super().__init__(*args, **kwargs)
MyCustomException.__name__ = AssertionError.__name__
return MyCustomException
上面的方法可以帮助您对测试中的异常执行特定的操作
回答 8
init()返回无值,完美解决
class Solve:
def __init__(self,w,d):
self.value=w
self.unit=d
def __str__(self):
return str("my speed is "+str(self.value)+" "+str(self.unit))
ob=Solve(21,'kmh')
print (ob)
输出:我的速度是21 kmh
回答 9
好吧,如果您不再关心对象实例,则可以替换它!
class MuaHaHa():
def __init__(self, ret):
self=ret
print MuaHaHa('foo')=='foo'
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。