码迷,mamicode.com
首页 >  
搜索关键字:country    ( 1043个结果
面向对象编程(2)self的含义,析构函数,数据库类练习
1.类的联系使用 class Baby(): country = 'China' #类变量,公共的变量,每个实例都可以用 对于公共的东西可以定义节省内存 def my(self): self.name = '牛寒阳' #name 是属性 是本类对象。 def cry(self): # 实例方法 pr ...
分类:数据库   时间:2018-05-22 16:01:45    阅读次数:239
seven day--面向对象及模块
复习 1 # 面向对象 2 # 类 实例化 对象/实例 3 # 什么是类? 拥有相同属性和方法的一类事物 4 # 什么是对象? 类的一个实际表现,给类中的属性填上具体的值,能够使用类中的方法 5 # 实例化的过程中做了那些事儿? 6 # 对象 = 类名() 7 # 首先要创造一个对象 8 # 被创造 ...
分类:其他好文   时间:2018-05-21 23:02:58    阅读次数:218
jsonp
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
学习 emplace_back() 和 push_back 的区别 emplace_back效率高
在引入右值引用,转移构造函数,转移复制运算符之前,通常使用push_back()向容器中加入一个右值元素(临时对象)的时候,首先会调用构造函数构造这个临时对象,然后需要调用拷贝构造函数将这个临时对象放入容器中。原来的临时变量释放。这样造成的问题是临时变量申请的资源就浪费。 c++11引入了右值引用, ...
分类:其他好文   时间:2018-05-19 18:42:54    阅读次数:164
super代替类名
#当父类名改动时,显然需要改动内容巨大,所以用super方法 #super()代替了父类名,也不需要传递参数self,父类名可以随意改动不影响 class Vehichle1: Country='china' #名字='ales'不好这样 def __init__(self,name,speed,l... ...
分类:其他好文   时间:2018-05-19 18:40:26    阅读次数:153
maven 工程mybatis自动生成实体类
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
Markdown Test
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 and Walking Route
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
1043条   上一页 1 ... 31 32 33 34 35 ... 105 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!