码迷,mamicode.com
首页 > 2015年08月18日 > 全部分享
PHP高效率写法(详解原因)
PHP高效率写法(详解原因)浏览:1601发布日期:2013/09/04分类:技术分享1.尽量静态化:如果一个方法能被静态,那就声明它为静态的,速度可提高1/4,甚至我测试的时候,这个提高了近三倍。当然了,这个测试方法需要在十万级以上次执行,效果才明显。其实静态方法和非静态方法的效率主要区别在内存:...
分类:Web程序   时间:2015-08-18 13:43:09    阅读次数:112
ResourceManager中setDefaultUncaughtExceptionHandler做了那些事情
public static void main(String argv[]) { Thread.setDefaultUncaughtExceptionHandler(new YarnUncaughtExceptionHandler()); StringUtils.startupShutdownMes...
分类:其他好文   时间:2015-08-18 13:43:59    阅读次数:141
狐狸找兔纸
题意: There is a hill with n holes around. The holes are signed from 0 to n-1.A rabbit must hide in one of the holes. A wolf searches the rabbit in anti...
分类:其他好文   时间:2015-08-18 13:41:53    阅读次数:119
(二)容易忘记又比较好用的控件属性
一 、android:descendantFocusability开发中很常见的一个问题,项目中的GridView或ListView不仅仅是简单的文字和图片,常常需要自己定义Adapter,问题就出现了,可能会发生点击每一个item的时候.没有反应,无法获取的焦点.原因多半是由于在你自己定义的Ite...
分类:其他好文   时间:2015-08-18 13:44:02    阅读次数:143
GIS开发站点收藏
Arcgis API for SilverlightArcGIS API for Silverlight开发入门C#开发ArcGIS
分类:其他好文   时间:2015-08-18 13:41:25    阅读次数:101
Ubuntu ssh 代理
ssh代理命令 ssh -qTfnN -D 端口 用户名@远程机器地址ssh全局代理 proxychains 程序 参数 proxychains 可以把从命令行启动的程序,用上ssh代理 proxychians 配置文件/etc/proxychains.conf 修改[ProxyList],...
分类:系统相关   时间:2015-08-18 13:42:37    阅读次数:415
反射ORM
反射ORM
分类:其他好文   时间:2015-08-18 13:42:56    阅读次数:111
【转载】【milk】This is the code that I use for my research projects.
milk【转载】This is the code that I use for my research projects.
分类:其他好文   时间:2015-08-18 13:40:08    阅读次数:93
jdbc学习过程问题记录
I、String sql = "insert into contacts (name,phone,email,refer_id) " +"values('xu','020-87662341','yahoo@yahoo.com.cn'," +"select id from contacts whe.....
分类:数据库   时间:2015-08-18 13:40:48    阅读次数:144
微信朋友圈分享--代码分享
1.首先,html页面要链接2.判断是否为微信里浏览器打开?//使用用微信打开var checkPlat = { isAndroid: function (ua) { ua = ua || navigator.userAgent; return ua.toLower...
分类:微信   时间:2015-08-18 13:42:40    阅读次数:870
并列div自动等高
并列div自动等高方法一:css控制 1 2 3 4 5 6 完美的DIV三行三列自适应高度布局 7 66 67 68 这里是头部 69 70 71 72 73 这里是中间74 这里是中间75 这里是...
分类:其他好文   时间:2015-08-18 13:42:27    阅读次数:170
[LeetCode] Linked List Cycle II, Solution
Question : Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull. Follow up: Can you solve it without using...
分类:其他好文   时间:2015-08-18 13:40:08    阅读次数:127
oracle实用sql语句
如果A表中指定id的行不存在,那么就插入新行到B表insertinto B(functionId,roleid,updateTime)select'123','1',sysdatefromdualwherenotexists(select1from Awhereroleid='1')
分类:数据库   时间:2015-08-18 13:40:31    阅读次数:156
一个数组中,一些数出现2次,只有两个数各出现一次,找出这两个数
https://leetcode.com/problems/single-number-iii/初次看到这题时,就想到用异或,但只能找出这两个数异或的结果,不能找出这两个数。最后我用快排过了,然后去看了看人家的思路。看来还是得仔细分析其中的隐藏信息啊。比如:从这两个数异或后的结果值可以看出,从低位开...
分类:编程语言   时间:2015-08-18 13:39:32    阅读次数:119
HDU 1394
题意 :求 循环序列的最小逆序数 线段树求出最初的逆序数, 吧 Num[1] 移动到 最后一位, 逆序数减少 Num【1】-1,单比Num【1】大的有 n - Num【1】个 ,又会增加 n - Num【1】个 故可快速求出 最小逆序数 #include #include #include #def...
分类:其他好文   时间:2015-08-18 13:39:03    阅读次数:131
u-boot可ping通PC,PC不可ping通u-boot
http://blog.csdn.net/ce123_zhouwei/article/details/7339134开发板运行U-Boot,在终端下使用Ping命令是能Ping通PC机,但PC机Ping不同U-Boot。 在开发行U-Boo下的Ethernet 驱动时,只能在Target上去Ping...
分类:其他好文   时间:2015-08-18 13:38:47    阅读次数:134
JS中的Call()和Apply()
1.常用实例function add (a,b){ alert(a+b);}function sub(a,b){ alert(a-b);}add.call(sub,4,3);相当于add(4,2);2.改变作用哉function Animal(){ this.name="Animal"; t...
分类:移动开发   时间:2015-08-18 13:39:24    阅读次数:115
2333条   上一页 1 ... 91 92 93 94 95 96 97 ... 138 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!