1.类的联系使用 class Baby(): country = 'China' #类变量,公共的变量,每个实例都可以用 对于公共的东西可以定义节省内存 def my(self): self.name = '牛寒阳' #name 是属性 是本类对象。 def cry(self): # 实例方法 pr ...
分类:
数据库 时间:
2018-05-22 16:01:45
阅读次数:
239
复习 1 # 面向对象 2 # 类 实例化 对象/实例 3 # 什么是类? 拥有相同属性和方法的一类事物 4 # 什么是对象? 类的一个实际表现,给类中的属性填上具体的值,能够使用类中的方法 5 # 实例化的过程中做了那些事儿? 6 # 对象 = 类名() 7 # 首先要创造一个对象 8 # 被创造 ...
分类:
其他好文 时间:
2018-05-21 23:02:58
阅读次数:
218
var newScript = document.createElement('script'); newScript.setAttribute("src", "http://192.168.255.14:8546/countrys_p.txt"); newScript.setAttribute("... ...
分类:
Web程序 时间:
2018-05-21 16:06:42
阅读次数:
212
#子类调用父类的方法 class Vehichle: Country='china' #名字='ales'不好这样 def __init__(self,name,speed,load,power): self.name=name self.speed=speed self.load=load sel... ...
分类:
其他好文 时间:
2018-05-19 18:48:28
阅读次数:
164
在引入右值引用,转移构造函数,转移复制运算符之前,通常使用push_back()向容器中加入一个右值元素(临时对象)的时候,首先会调用构造函数构造这个临时对象,然后需要调用拷贝构造函数将这个临时对象放入容器中。原来的临时变量释放。这样造成的问题是临时变量申请的资源就浪费。 c++11引入了右值引用, ...
分类:
其他好文 时间:
2018-05-19 18:42:54
阅读次数:
164
#当父类名改动时,显然需要改动内容巨大,所以用super方法 #super()代替了父类名,也不需要传递参数self,父类名可以随意改动不影响 class Vehichle1: Country='china' #名字='ales'不好这样 def __init__(self,name,speed,l... ...
分类:
其他好文 时间:
2018-05-19 18:40:26
阅读次数:
153
generatorConfig.xml [html] view plain copy <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis ...
分类:
其他好文 时间:
2018-05-19 10:41:43
阅读次数:
156
A First Level Header ==================== A Second Level Header Now is the time for all good men to come to the aid of their country. This is just a r ...
分类:
其他好文 时间:
2018-05-18 22:24:07
阅读次数:
208
class Chinese: country='china' def __init__(self,name): self.name=name def playball(self,ball): print('%s正在打%s'%(self.name,ball))name1=input('>>>')#输入 ...
分类:
其他好文 时间:
2018-05-18 13:57:13
阅读次数:
119
Kuro is living in a country called Uberland, consisting of nn towns, numbered from 11 to nn, and n?1n?1 bidirectional roads connecting these towns. It ...
分类:
其他好文 时间:
2018-05-17 13:49:50
阅读次数:
134