5 类的特殊属性 #python为类内置的特殊属性 类名.__name__# 类的名字(字符串) 类名.__doc__# 类的文档字符串 类名.__base__# 类的第一个父类(在讲继承时会讲) 类名.__bases__# 类所有父类构成的元组(在讲继承时会讲) 类名.__dict__# 类的字典 ...
分类:
其他好文 时间:
2018-08-22 15:01:03
阅读次数:
183
题目描述 Mob feud rages in Equatorial Byteotia. The mob bosses have come to the country's capital, Byteburg, to settle the dispute. Negotiations were very ...
分类:
其他好文 时间:
2018-08-22 12:07:38
阅读次数:
264
课程 网址 学籍 {{item.Name}} {{item.Url}} {{item.Country}} 1,002 amet consectetur ...
分类:
其他好文 时间:
2018-08-19 14:53:36
阅读次数:
147
event的target和currentTarget的区别 target:触发事件的元素。 currentTarget:事件绑定的元素。 ...
分类:
其他好文 时间:
2018-08-16 14:54:41
阅读次数:
125
原题如下: Conscription Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 16584 Accepted: 5764 Description Windy has a country, and he wants to bu ...
分类:
其他好文 时间:
2018-08-12 01:27:31
阅读次数:
136
As an emergency rescue team leader of a city, you are given a special map of your country. The map shows several scattered cities connected by some ro ...
分类:
其他好文 时间:
2018-08-09 20:06:39
阅读次数:
170
xml模块是一种文件数据处理格式的方法,常用与生成、解析或修改.xml配置文件 1.常见的.xml配置文件格式如下 2.xml模块的简单使用 3. 用Python创建.xml文件小实例 <?xml version='1.0' encoding='utf-8'?> <Earth> <Country C ...
分类:
其他好文 时间:
2018-08-07 20:40:13
阅读次数:
148
CIA headquarter collects data from across the country through its classified network. They have been usingoptical fibres long before it's been deploye ...
分类:
其他好文 时间:
2018-08-03 19:50:28
阅读次数:
152
There is a famous railway station in PopPush City. Country there is incredibly hilly. The station was built in last century. Unfortunately, funds were ...
分类:
其他好文 时间:
2018-08-02 16:06:21
阅读次数:
179
继承是面向对象中一个比较核心的概念。ES6 class的继承与java的继承大同小异,如果学过java的小伙伴应该很容易理解,都是通过extends关键字继承。相较于ES5当中通过原型链继承要清晰和方便许多。先上代码: 输出: 上面代码中,子类的constructor方法和say方法中,都出现了su ...
分类:
其他好文 时间:
2018-07-31 19:13:52
阅读次数:
149