首页 > 2015年02月06日 > 全部分享
迭代器模式
迭代器模式
分类:其他   时间:2015-02-06 16:26:39    收藏:0  评论:0  赞:0  阅读:199
lucene建立索引的过程
建立索引过程用户提交数据=》solr建立索引=》调用lucene包建立索引官方建立索引和查询索引的例子如下:http://lucene.apache.org/core/4_10_3/demo/overview-summary.html#About_the_codehttp://lucene.apac...
分类:Web开发   时间:2015-02-06 16:26:19    收藏:0  评论:0  赞:0  阅读:288
基础知识汇总
基础知识汇总 1.self 首先明确的是self只有在类的方法中才会有,独立的函数或方法是不必带有self的。self在定义类的方法时是必须有的,虽然在调用时不必传入相应的参数。self名称不是必须的,在python中self不是关键词,你可以定义成a或b或其它名字都可以,但是约定成俗,不要搞另类,...
分类:其他   时间:2015-02-06 16:25:59    收藏:0  评论:0  赞:0  阅读:329
oracle dmp文件的导入与导出
dmp文件的导入与导出:整库的导入导出1.从远程机器上导出expdp npmdb/npmoptr@orcl schemas=NPMDB directory=MY_DIR dumpfile=npmdb_87.dmp 参数说明schemas:可以看成是数据库名,directory:存放dmp,log文件...
分类:数据库技术   时间:2015-02-06 16:25:39    收藏:0  评论:0  赞:0  阅读:399
spring中注解的通俗解释
我们在没有用注解写spring配置文件的时候,会在spring配置文件中定义Dao层的bean,这样我们在service层中,写setDao方法,就可以直接通过接口调用Dao层,用了注解写法后,在配置文件中不用再写Dao层的bean,只需要在Dao实现类中加入@Repositorypublic Cl...
分类:编程语言   时间:2015-02-06 16:25:29    收藏:0  评论:0  赞:0  阅读:329
Python BeautifulSoup 简单笔记
Python BeautifulSoup 简单笔记 http://rsj217.diandian.com/post/2012-11-01/40041235132http://www.cnblogs.com/scrat/archive/2013/01/18/2866637.htmlBeautiful ...
分类:编程语言   时间:2015-02-06 16:25:20    收藏:0  评论:0  赞:0  阅读:301
各种容器的区别
堆、栈的区别及其应用List、Set、Collection、IteratorArrayList 的get方法会使用到索引?数组也有用到?System.out.println(c);调用toString方法迭代器ArrayList vsLinkedListHashSet vsTreeSet vsLin...
分类:其他   时间:2015-02-06 16:25:09    收藏:0  评论:0  赞:0  阅读:265
hadoop之wordCount程序理解
有篇文章http://www.cnblogs.com/xia520pi/archive/2012/05/16/2504205.html中介绍的这个接口可以实现序列化,这个WritableComparable接口跟java中的java.io.Serializable接口有什么区别?http://a12...
分类:其他   时间:2015-02-06 16:24:59    收藏:0  评论:0  赞:0  阅读:284
设计模式之禅学习笔记
现在比较熟悉的设计模式有:slf4j=》单例模式,工厂模式,门面(外观)模式工厂模式 vs 抽象工厂模式工厂模式接口,接口实现类,工厂类抽象工厂模式接口,借口实现类,工厂抽象类,具体的工厂实现类。红色句子是二者唯一的区别工厂模式 vs 建造者模式工厂模式是生产整个产品建造者模式是重点强调建造的过程模...
分类:其他   时间:2015-02-06 16:24:49    收藏:0  评论:0  赞:0  阅读:207
eafier 簡單易用 HTML、CSS 網頁編輯器(可自動插入 Tag 標籤)
翻译转来的,注意观看哦。
分类:Web开发   时间:2015-02-06 16:24:39    收藏:0  评论:0  赞:0  阅读:282
easyui LinkButton
http://www.zi-han.net/case/easyui/menu&button.html LinkButton - jQuery EasyUI Demo LinkButton Buttons can be created from link. enabl...
分类:其他   时间:2015-02-06 16:24:29    收藏:0  评论:0  赞:0  阅读:540
java的各个队列之间的联系和区别是什么
java的各个并发队列之间的联系和区别java.util.concurrent是在并发编程中很常用的实用工具类ArrayBlockingQueue, DelayQueue, LinkedBlockingDeque, LinkedBlockingQueue, PriorityBlockingQueue...
分类:编程语言   时间:2015-02-06 16:24:19    收藏:0  评论:0  赞:0  阅读:2030
osg 纹理访问器
#include#include#include#include#include#include#include#include#include#include#includeclass TextureVisitor:public osg::NodeVisitor{public:TextureVis...
分类:其他   时间:2015-02-06 16:24:09    收藏:0  评论:0  赞:0  阅读:696
java 基本类型和包装类的比较
public class BoxingTest { @Test public void test1(){ String a = new String("1"); String b = new String("1"); Long c = 1...
分类:编程语言   时间:2015-02-06 16:23:59    收藏:0  评论:0  赞:0  阅读:262
Buy Tickets(线段树)
Buy TicketsTime Limit:4000MSMemory Limit:65536KB64bit IO Format:%I64d & %I64uSubmitStatusDescriptionRailway tickets were difficult to buy around the L...
分类:其他   时间:2015-02-06 16:23:49    收藏:0  评论:0  赞:0  阅读:373
Multi-catch
It’s relatively common for a try block to be followed by several catch blocks to handle various types of exceptions. If the bodies of several catch bl...
分类:其他   时间:2015-02-06 16:23:41    收藏:0  评论:0  赞:0  阅读:237
iframe高度自适应
1 父页面设置脚本(脚本必须在下):父页: 1 2 3 4 5 6 7 8 9 10 26 27 子页: 1 2 3 4 5 6 7 这是一个ifrmae,嵌入在http://snandy.g...
分类:其他   时间:2015-02-06 16:23:31    收藏:0  评论:0  赞:0  阅读:358
Facebook抛弃了HTML5,微信却捧火了它
苹果普及了HTML5技术,Facebook押注HTML5上,却受到不小的打击,导致在后来一段时间里,唱衰HTML5的言论成为媒体的一种幸灾乐祸的态度,人人避而不谈。微信通过公众号的形式,以游戏、营销重新焕发出HTML5的青春。
分类:微信   时间:2015-02-06 16:23:21    收藏:0  评论:0  赞:0  阅读:250
String的hashCode原理
参考下面这篇文章:http://blog.csdn.net/steveguoshao/article/details/12576849http://blog.csdn.net/mingli198611/article/details/10062791上面这篇文章解释了为什么hashCode里面要用3...
分类:其他   时间:2015-02-06 16:23:10    收藏:0  评论:0  赞:0  阅读:221
java中遍历List中的map问题
List list = new ArrayList();Map map = null; while (rs.next()) { map = new HashMap(); map.put("fromIP", rs.get...
分类:编程语言   时间:2015-02-06 16:23:00    收藏:0  评论:0  赞:0  阅读:230
1748条   上一页 1 ... 36 37 38 39 40 ... 88 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!