码迷,mamicode.com
首页 > 2014年06月18日 > 全部分享
php 常用五种模式
/* 设计模式之单例模式$_instance 必须声明为静态的私有变量构造函数必须声明为私有,防止外部程序 new 类从而失去单例模式的意义getInstance() 方法必须设置为公有的,必须调用此方法以返回实例的一个引用:: 操作符只能访问静态变量和函数 new 对象会消耗内存使用场景:最常用的...
分类:Web程序   时间:2014-06-18 22:06:32    阅读次数:233
PatentTips - Increasing turbo mode residency of a processor
BACKGROUNDMany modern operating systems (OS's) use the Advanced Configuration and Power Interface (ACPI) standard, e.g., Rev. 3.0b, published Oct. 10,...
分类:其他好文   时间:2014-06-18 22:07:15    阅读次数:382
JAVA 1.7并发之LinkedTransferQueue原理理解
昨天刚看完BlockingQueue觉得好高级啊,今天扫到1.7就发现了升级版。。。。如果对内容觉得不够充分,可以去看http://www.cs.rochester.edu/u/scott/papers/2009_Scherer_CACM_SSQ.pdf就是作者的论文啦,纯英文。。。比较难啃,但是我...
分类:编程语言   时间:2014-06-18 22:07:55    阅读次数:192
百度还懂搜索吗?
举例,以“如何查看mininet交换机中的流表”为搜索字符串,搜狗、Google、360搜索、百度的返回结果如下:还能说什么呢???
分类:其他好文   时间:2014-06-18 22:09:10    阅读次数:220
MVC创建XML,并实现增删改
如果创建如下的XML: darren 创建XML文件在HomeController中,在根目录下创建new.xml文件:public ActionResult Index() { return View(); } [HttpPost] public ActionResult AddXml() ...
分类:Web程序   时间:2014-06-18 22:08:31    阅读次数:176
系统无法识别移动硬盘的解决过程
1. 如果是从未使用过USB外接设备的,需要查看CMOS参数 对于从来没有使用过USB外接设备的朋友来说,即使正确安装了驱动程序也有可能出现系统无法检测USB硬盘的情况,这主要是由于主板默认的CMOS端口是关闭的,如果没有将其设置为开启状态,那么Windows自然无法检测到移动硬盘了。为了解决这个问...
分类:移动开发   时间:2014-06-18 22:10:25    阅读次数:262
编译原理学习笔记 -- 绪论1
1. 语言处理器语言处理系统 _________ 经过预 _______源程序 --> |预处理器| --> 处理的 --> |编译器| --> 目标汇编程序 -------- 源程序 ------- _______ 可重定位的 ______________--> |汇编器| --> 机器代码 --...
分类:其他好文   时间:2014-06-18 22:09:44    阅读次数:194
java.lang.NoClassDefFoundError: org/hibernate/cfg/Configuration解决方法
Autowiring of fields failed; nested exception is...........Error creating bean with name 'siteOperaterFactory': Autowiring of fields fa ...........jav...
分类:编程语言   时间:2014-06-18 22:12:24    阅读次数:221
[LeetCode] Word Break
Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words.For e...
分类:其他好文   时间:2014-06-18 22:11:44    阅读次数:200
bgr to rgb
因为在研究车牌识别算法(plr),遇到了算法 处理的格式问题,可分三个常用格式:0:rgb1:bgr2:yuv422——需要注意的是,这里为啥选yuv422做识别,当然还可选yuv444,最坏打算可选yuv420,主要是考虑颜色识别效果 R代表红,red; G代表绿,green; B代表蓝,b...
分类:其他好文   时间:2014-06-18 22:11:01    阅读次数:228
6月15号=》146页-155页
6.4.5 配合counter-increment属性添加编号 代码示范: //为该元素定义了一个计数器 元素{counter-increment:mycounter} //在该元素的前端插入定义的计数器 元素:before{con...
分类:其他好文   时间:2014-06-18 22:13:01    阅读次数:179
xhprof 安装使用
1、安装扩展 windows下把 xhprof.dll 放到extensions目录下修改配置文件[xhprof]extension=xhprof.so;; directory used by default implementation of the iXHProfRuns; interface....
分类:其他好文   时间:2014-06-18 22:13:39    阅读次数:261
jquery 事件绑定案例
jquery 事件绑定
分类:Web程序   时间:2014-06-18 22:15:00    阅读次数:198
Android学习---ListView和Inflater的使用,将一个布局文件转化为一个对象
本文将介绍ListView和Inflater的使用,将接上一篇文章内容.一.什么是ListView?在android开发中ListView是比较常用的控件,ListView控件可使用四种不同视图显示项目,1.大(标准)图标2.小图标3.列表4.报表,比较常用的是列表的形式.ListItem对象可包含...
分类:移动开发   时间:2014-06-18 22:14:17    阅读次数:354
以软件推动工业进步 -嵌入式学习网站
http://www.cnblogs.com/cubean/archive/2010/04/26/1721035.html以下内容转自:http://bbs.msembed.com/showtopic-1238.aspx嵌入式入门篇:什么是嵌入式系统 http://www.he...
分类:Web程序   时间:2014-06-18 22:15:38    阅读次数:347
PatentTips - Optimizing power usage by factoring processor architectural events to PMU
BACKGROUNDProcessor power consumption has become a major issue in recent years. The current trend of processor design to multi-core architecture as ea...
分类:其他好文   时间:2014-06-18 22:16:54    阅读次数:435
Implement strStr()
Implement strStr().Returns a pointer to the first occurrence of needle in haystack, ornullif needle is not part of haystack.思路:这是一道字符串匹配的函数,就是找出needle...
分类:其他好文   时间:2014-06-18 22:16:17    阅读次数:236
1662条   上一页 1 ... 88 89 90 91 92 93 94 ... 98 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!