码迷,mamicode.com
首页 >  
搜索关键字:subclass    ( 381个结果
python之旅第八篇--异常
判断类与对象关系 ...
分类:编程语言   时间:2017-09-18 12:19:41    阅读次数:134
python3字典方法
>>> type({}) >>> dir(dict) ['__class__', '__contains__', '__delattr__', '__delitem__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__geta... ...
分类:编程语言   时间:2017-09-14 10:23:07    阅读次数:208
python3_list and tuple
>>>list=['a',1,'1'] >>> dir(list) ['__add__', '__class__', '__contains__', '__delattr__', '__delitem__', '__dir__', '__doc__', '__eq__', '__format__',... ...
分类:编程语言   时间:2017-09-08 23:53:54    阅读次数:282
Nodejs前端服务器压缩图片
Nodejs作为前端服务器,自然能承担处理图片的能力, 使用GM for nodejs 作为图片处理器,调用ImageMagick处理图片 使用ImageMagick var imageMagick = gm.subClass({ imageMagick: true }); 然后就像文档中使用gm那 ...
分类:Web程序   时间:2017-08-31 17:57:11    阅读次数:214
【Spring】@Transactional解释 (转)
Spring是当今广泛使用的框架,为Java核心堆栈带来了许多强大的功能和扩展。然而,大多数人倾向于使用这些功能,而不了解其潜在的机制。 由于现实生活中没有“魔法”,我们将在这一系列文章中深入研究与事务和数据库相关的一些Spring功能。 第一篇文章是处理着名的@Transactional注释,为开 ...
分类:编程语言   时间:2017-08-31 01:03:04    阅读次数:216
Python中内置函数的介绍
内置函数的功能介绍 常用内置函数如下: 1.abs() 绝对值 格式:abs(x) 例如:print(abs(-18)) >>> 18 返回值:number #该函数主要用于数值类的操作 2.all() 是否都为真 格式:all(iterable) 例如:print(all([1,2,3,])) > ...
分类:编程语言   时间:2017-08-27 17:13:45    阅读次数:295
二次封装CoreData
(1)创建一个Data Model文件。命名为MyModel.xcdatamodeld (2)创建Users表,加入如图的字段 (3)创建NSManagedObject subclass表实体文件 (4)在Users.m文件里,覆写description方法 CoreDataDBHelper.h # ...
分类:其他好文   时间:2017-08-20 14:11:14    阅读次数:223
python ==》 面向对象的反射,(isinstance and issubclass)
1.staticmethod:(静态方法) 静态方法:让类里的方法直接被类调用,就像正常的函数一样。 2.classmethod:(类方法) 类方法:默认参数为:cls ,可以直接用类名调用,可以与类属性交互。 共同点: 1.都可以直接被类调用,不需要实例化 不同点: 1,类方法必须有一个cls参数 ...
分类:编程语言   时间:2017-08-16 19:12:24    阅读次数:181
Python__继承
#继承的基本形式# class ParentClass1(object): #定义父类# pass## class ParentClass2: #定义父类# pass## class SubClass1(ParentClass1): #单继承,基类是ParentClass1,派生类是SubClass ...
分类:编程语言   时间:2017-08-15 19:47:22    阅读次数:193
odoo web controller
Routing Decorator marking the decorated method as being a handler for requests. The method must be part of a subclass of Controller. Parameters route  ...
分类:Web程序   时间:2017-08-09 14:25:45    阅读次数:482
381条   上一页 1 ... 15 16 17 18 19 ... 39 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!