码迷,mamicode.com
首页 >  
搜索关键字:method    ( 13407个结果
django orm 批量存储数据
项目中 需要大量数据的保存操作,每条执行save操作效率太低,在官网上找到bull_create 的批量存储方式,效率提高很多Insert in bulkWhen creating objects, where possible, use thebulk_create()method to redu...
分类:其他好文   时间:2014-06-28 23:24:44    阅读次数:594
方法的链式调用【参考javascript设计模式第6章】
对应经常使用jquery的朋友,方法的链式调用应该是已经很属性了,书上有模拟出一个很简单的类库代码,见代码如下:Function.prototype.method = function(name,fn){ this.prototype[name] = fn; return this;};(fun.....
分类:编程语言   时间:2014-06-28 23:12:29    阅读次数:320
如何让输入法自动隐藏?
((InputMethodManager) getSystemService(INPUT_METHOD_SERVICE)) .hideSoftInputFromWindow(LoginActivity.this .getCu...
分类:其他好文   时间:2014-06-28 21:23:49    阅读次数:194
设计模式随笔
原文:http://blog.csdn.net/chmask/article/details/26314851.工厂模式(Factory Method):子类只能是平级关系,如父类是动物,子类是猫和狗2.抽象工厂模式(Abstract Factory):子类之间也能是包含关系,如:父类是组件,子类可...
分类:其他好文   时间:2014-06-28 21:21:39    阅读次数:224
ie7/8浏览器报错:对象不支持“trim”属性或方法
解决方法: 方法1: 使用jquery里面的全局函数$.trim()代替原生js方法trim(): $.trim( 你要替换的字符 ); 方法2: Function.prototype.method = function (name, func) { this.prototype[name] = f...
分类:其他好文   时间:2014-06-28 20:33:06    阅读次数:294
PatentTips - System and method to deprivilege components of a virtual machine monitor
BACKGROUND INFORMATIONAn embodiment of the present invention relates generally to virtualization platforms and, more specifically, to a system and met...
分类:其他好文   时间:2014-06-21 00:58:07    阅读次数:297
Java 多线程编程两个简单的样例
/** * @author gao */package gao.org;public class RunnableDemo implements Runnable{ @Override public void run() { // TODO Auto-generated method stub .....
分类:编程语言   时间:2014-06-20 22:51:06    阅读次数:325
Crystal Report 遇到需要登录的问题
解决方式:The advices for crystal report database connection settings:1, Using ApplyLogOnInfo method instead of SetDatabaseLogon method. The code example a...
分类:其他好文   时间:2014-06-20 20:41:49    阅读次数:239
【设计模式】——工厂方法模式
工厂方法模式(Factory Method),定义一个用于创建对象的接口,让子类决定实例化哪一个类。工厂方法使用一个类的实例化延迟到其子类。根据依赖倒转原则,我们把工厂类抽象出一个接口,这个接口只有一个方法,就是创建抽象产品的工厂方法。然后,所有的要生产具体类的工厂,就去实现这个接口,这样,一个.....
分类:其他好文   时间:2014-06-20 14:05:50    阅读次数:205
Careercup | Chapter 5
5.1 You are given two 32-bit numbers, N andM, and two bit positions, i and j. Write a method to insert M into Nsuch that M starts at bit j and ends at...
分类:其他好文   时间:2014-06-20 13:51:09    阅读次数:149
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!