腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
最新优惠活动
文章/答案/技术大牛
搜索
搜索
关闭
发布
精选内容/技术社群/优惠产品,
尽在小程序
立即前往
文章
问答
(9999+)
视频
沙龙
1
回答
Pytorch
super
(class,self).__
init__
() vs
super
().__
init__
()
到目前为止,在所有的文章和相应的代码中,我看到人们在他们的def __
init__
函数中使用
super
(class, self).__
init__
()而不是
super
().__
init__
(),而不管人们使用的是哪个python版本。为什么?我认为它们是相同的东西,但不同版本的python的语法不同。我是不是多疑了,还是有真正的理由在pytorch中使用旧格式?
浏览 0
提问于2018-04-04
得票数 3
2
回答
super
().__
init__
()出错失败
class db_Conn: self.first = first__(self,first,last,pay,prog): self.prog = prog dev1 = Dev('amitesh','sahay',50000, 'python'
浏览 2
提问于2017-04-11
得票数 0
回答已采纳
1
回答
用
super
()装饰子类的__
init__
方法
、
、
、
设置了我的类层次结构,以便每个子__
init__
()都必须将self._init_has_run()设置为False,调用父级的__
init__
(),然后执行自己的__
init__
(),最后将self._init_has_run()设置为True。_init_has_run = False
super
().Python正在抛出以下内容: File "filename.py", line 82, in decorat
浏览 0
提问于2015-09-10
得票数 4
2
回答
用条件参数为
super
()调用__
init__
怎样才能达到以下目的:
super
().__
init__
(persistent_history_file="~/myapp_history.dat", allow_cli_args=False)注意:这个问题并不是专门针对cm
浏览 2
提问于2022-07-20
得票数 2
回答已采纳
6
回答
使用__
init__
()方法理解Python
super
()
、
、
、
、
我正在尝试理解
super
()的用法。从外观上看,这两个子类都可以创建,很好。 def __
init__
(self): def__
init__
(self): def __
init__
(self):
浏览 3
提问于2009-02-23
得票数 2901
回答已采纳
1
回答
继承:在__
init__
方法中使用
super
()函数
在init中这样使用
super
()可以吗?class Command: def __
init__
(self,command_type, command_identifier: int, command_argum
浏览 7
提问于2022-04-30
得票数 2
1
回答
super
( MyObject,self).__
init__
()在类MyObject __
init__
()函数中做了什么?
、
、
class MyObject1(object):
super
(MyObject1, self).__
init__
() def __
init__
(self, arg): pass我知道“超级”是指父类构造函数, 但是我不明
浏览 0
提问于2016-07-26
得票数 2
回答已采纳
1
回答
如何在多重继承中使用“
Super
”?
、
、
、
假设我们定义了两个类: def __
init__
(self): def __
init__
(self):self.b = 0class C(A, B): A.__init__(self) # how to do this using
super
() B.__init__(self) # how t
浏览 2
提问于2019-11-25
得票数 0
回答已采纳
2
回答
使用superclass.__init()__而不是超类()调用超类构造函数的原因
、
、
正如我从这本书中了解到的,如果Sub继承了
Super
,那么就不需要调用超类‘(
Super
's) __
init__
()方法。但是,如果我将代码修改为: def __
init__
(self,name): print("Inside
Super
__
init__
")__
init__
(name)来调用
Super
的__
init__
,而不是直接调用<
浏览 0
提问于2018-07-04
得票数 1
回答已采纳
1
回答
在多个派生类中调用构造函数
、
、
在python3中调用多个派生类的基构造器的正确语法是什么 def __
init__
(): def __
init
__(): def __
init__
():
super
().__
init__
() # ???
浏览 0
提问于2012-09-12
得票数 1
回答已采纳
2
回答
我们能把什么论点传递给超级()?
、
然而,我得到了这个错误:这是我的密码: # call parent constructor to s
浏览 4
提问于2015-12-28
得票数 8
回答已采纳
2
回答
Python多重继承,从公共子类初始化
class Mom(object): print("Mom") def __
init__
(self): def __
init__
(self): c = Child() #only pri
浏览 8
提问于2017-02-14
得票数 3
回答已采纳
2
回答
父初始化器没有在多层继承中调用?
、
、
class Base(object): print "BASE" def __
init__
(self): print "NEXT" def __
init__
(self):
super
(Ne
浏览 2
提问于2012-04-28
得票数 2
回答已采纳
2
回答
多继承,TypeError:__
init__
()接受两个位置参数,但给出了3个
、
、
我在学习课堂的多重继承 def __
init__
(self, a): self.a = aclass B():
super
().__
init__
() def __
init__
(self, a,
浏览 0
提问于2020-12-15
得票数 1
回答已采纳
1
回答
基类中的` `
super
().__
init__
()`有什么作用?
、
、
我知道如果
super
().__
init__
()在Python子类中,它将继承父类的属性。我只是想知道如果我们在父类本身中调用
super
().__
init__
()会怎么样,如下所示: def __
init__
(self,*args,**kwrgs):在父类中调用
super
有什么用?
浏览 0
提问于2021-01-27
得票数 0
2
回答
super
()和父类名有什么不同?
、
、
、
、
使用
super
()和直接使用父类名有区别吗?例如: def __
init__
(self): self.__a=10 def __
init__
(self): Parent.__init__(self) #
浏览 3
提问于2017-02-23
得票数 29
回答已采纳
2
回答
类中的类型错误
、
在定义__
init__
()方法时,我得到一个 File "/Users/jaredbanton8/Documents__TypeError: __
init__
() missing 1 required positional argument: 'location' 在我的代码中,我已经包含了我的类的测试__(se
浏览 3
提问于2015-04-16
得票数 1
2
回答
子类化时使用(误用)
super
()
、
、
当我在纠结如何对Frame和LabelFrame进行子类化以使它们位于正确的父类上时,我发现许多答案表明在子类化时
super
().__
init__
比BaseClass.__init()__更好。__
init__
(self, master=parent, text='inner') #py 3.4 #
super
(App, self).__
init__
(self, master=parent, text='inner') #py 2.
浏览 6
提问于2014-05-20
得票数 2
1
回答
有没有一种方法可以使用
super
()来调用Python中每个基类的__
init__
方法?
、
、
、
、
假设我有一些Python代码: def __
init__
(self): def__
init__
(self): def __
init__
(self):print("Daughter")
super
().__<e
浏览 0
提问于2015-06-29
得票数 5
回答已采纳
1
回答
难以理解子类和
super
()函数中的__
init__
()
、
、
、
、
根据我收集的信息,
super
()从父类调用init方法,并处理从父类传递给它的参数。#9-6 Ice Cream Stand self.number_served += additional_served
浏览 0
提问于2022-04-17
得票数 2
点击加载更多
扫码
添加站长 进交流群
领取专属
10元无门槛券
手把手带您无忧上云
相关
资讯
Python中__init__的通俗解释是什么?
多个SUPER提升25%!微星RTX2060 SUPER显卡评测
Python的Super方法
super 没那么简单
Python3面向对象-继承与多态
热门
标签
更多标签
云服务器
ICP备案
实时音视频
对象存储
即时通信 IM
活动推荐
运营活动
广告
关闭
领券