码迷,mamicode.com
首页 >  
搜索关键字:method    ( 13407个结果
mysql两种表存储结构myisam和innodb的性能比较测试
MyISAM:这个是默认类型,它是基于传统的ISAM类型,ISAM是Indexed Sequential Access Method (有索引的顺序访问方法) 的缩写,它是存储记录和文件的标准方法.与其他存储引擎比较,MyISAM具有检查和修复表格的大多数工具. MyISAM表格可以被压缩,而且它们...
分类:数据库   时间:2014-05-23 06:29:27    阅读次数:405
多线程AsyncTask中使用Jsoup 报错Caused by: java.lang.NoClassDefFoundError: org.jsoup.Jsoup
代码如下,在多线程AsyncTask类中的doInBackground调用Jsoup protected String doInBackground(String... params) { // TODO Auto-generated method stub Log.i(TAG, "doInBackground(Params... params) called"); tr...
分类:编程语言   时间:2014-05-23 00:54:53    阅读次数:475
Breaking parallel loops in .NET C# using the Stop method z
List integers = new List() { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };Parallel.ForEach(integers, (int item, ParallelLoopState state) =>{ if (item > 5) { ...
分类:Web程序   时间:2014-05-22 16:03:56    阅读次数:287
php 被抛弃使用的函数
call_user_method()(使用 call_user_func() 替代) call_user_method_array() (使用 call_user_func_array() 替代) define_syslog_variables() dl() ereg() (使用 preg...
分类:Web程序   时间:2014-05-22 15:08:51    阅读次数:290
设计模式总结篇系列:工厂方法模式(Factory Method)
工厂方法模式适合于对实现了同一接口或继承了同一父类的一些类进行实例的创建。一般是通过定义一个工厂类,并在其方法中实现对具有上述特点的类对象的创建。根据具体产生类对象的方法定义形式,又可以将其分为普通工厂方法模式、多个工厂方法模式和静态工厂方法模式。一、普通工厂方法模式:常见的经典写法如下(以发送邮件...
分类:其他好文   时间:2014-05-22 14:26:03    阅读次数:236
添加菜单到fragment
1、在fragment的代码中 @Override public void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(save...
分类:其他好文   时间:2014-05-22 13:48:05    阅读次数:197
Eclipse编辑器设置
1. 自己不太喜欢Eclipse按回车后自动插入参数的默认选项。可以在Window-Preferences-Java-Editor-Content Assist选项里,将Fill method arguemnts and show guessed arguemnts复选框取消即可。2. 字体大小和颜...
分类:系统相关   时间:2014-05-21 20:47:16    阅读次数:440
23种设计模式
23种设计模式目录创建型1. Factory Method(工厂方法)2. Abstract Factory(抽象工厂)3. Builder(建造者)4. Prototype(原型)5. Singleton(单例)结构型6. Adapter Class/Object(适配器)7. Bridge(桥接...
分类:其他好文   时间:2014-05-21 19:26:15    阅读次数:316
Mybatis分页插件2.0版本发布
v2.0更新内容: 1.支持Mybatis缓存,count和分页同时支持(二者同步) 2.修改拦截器签名,拦截Executor,签名如下: @Intercepts(@Signature(type = Executor.class, method = "query", args = {MappedStatement.class, Object.class, RowBounds.class, ResultHandler.class})) 3.将Page类移到外面,方便调用...
分类:其他好文   时间:2014-05-21 16:24:50    阅读次数:395
Mybatis分页插件2.0版本发布
v2.0更新内容: 1.支持Mybatis缓存,count和分页同时支持(二者同步) 2.修改拦截器签名,拦截Executor,签名如下: @Intercepts(@Signature(type = Executor.class, method = "query", args = {MappedStatement.class, Object.class, RowBounds.class, ResultHandler.class})) 3.将Page类移到外面,方便调用...
分类:其他好文   时间:2014-05-21 14:40:56    阅读次数:408
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!