码迷,mamicode.com
首页 >  
搜索关键字:function    ( 54714个结果
Android ormlite like() function is not working
//http://stackoverflow.com/questions/7642161/android-ormlite-like-function-is-not-workingtry { QueryBuilder qb = makeDao.queryBuilder(); qb.wher...
分类:移动开发   时间:2014-08-18 18:07:13    阅读次数:240
抽象类和抽象方法
什么是抽象方法?抽象方法是由关键词abstract修饰的方法,并且抽象方法没有方法体,就是没有花括号。比如abstract function demo();什么是抽象类,抽象类是用abstract关键词修饰的类,抽象类中至少要有一个抽象方法,抽象类不能创建对象,所以抽象类内部不能访问非静态属性。其他...
分类:其他好文   时间:2014-08-18 17:50:32    阅读次数:191
JavaScript实现继承总结
原型链 function?SuperType(){ ????this.property="SuperType_true"; } SuperType.prototype.getSuperValue=function(){ ????return?this.property; }; function?SubType(){ ????this.subprope...
分类:编程语言   时间:2014-08-18 16:39:45    阅读次数:218
时间格式化
/** *@desc 显示某一个时间相当于当前时间在多少秒前,多少分钟前,多少小时前 *@param timeInt:unixtime时间戳 *@param format:时间显示格式 *@return string*/ function__time_format($timeInt,$format=‘Y-m-dH:i:s‘){ if(empty($timeInt)||!is_numeric($timeInt)||!$time..
分类:其他好文   时间:2014-08-18 16:35:03    阅读次数:204
HDU-4947-GCD Array(树状数组+莫比乌斯反演)
Problem Description Teacher Mai finds that many problems about arithmetic function can be reduced to the following problem: Maintain an array a with index from 1 to l. There are two kinds of ope...
分类:其他好文   时间:2014-08-18 16:26:42    阅读次数:248
JS URL解析
function urlParse(url) { try { var hostexp = /http\:\/\/([^\/]+)/; var hoststr = url.match(hostexp)[0]; var ...
分类:Web程序   时间:2014-08-18 15:59:12    阅读次数:168
04makefile(下)
n 基本框架:a) Make常用内嵌函数b) 多级目录Makefile的编写4.1Make常用内嵌函数函数调用的一般形式:$(function arguments(参数))1) $(wildcard PATTERN) : 匹配当前目录下指定模式的文件例子:src=$(wildcard *.c)2) ...
分类:其他好文   时间:2014-08-18 15:58:42    阅读次数:157
Javascript Array 非常用方法解析
1. mapvar ary = Array(3);ary[0] = 2ary.map(function(elem) { return '1'; });结果是["1", undefined * 2], 因为map只能被初始化过的数组成员调用2. reduce[].reduce(Math.pow); ....
分类:编程语言   时间:2014-08-18 15:57:52    阅读次数:185
jquery $.proxy使用
在某些情况下,我们调用Javascript函数时候,this指针并不一定是我们所期望的那个。例如: 1 //正常的this使用 2 $('#myElement').click(function() { 3 4 // 这个this是我们所期望的,当前元素的this. 5 6 $(t...
分类:Web程序   时间:2014-08-18 15:57:02    阅读次数:215
php 中的fread 的优化问题 http协议
用的是一个http协议今天用的是fread 读取网络上传回来的文件流信息,但是发现一直很慢很慢我通过网络直接访问的话速度也没有那么慢的,基本是等了4-5分钟才能把数据完全下载下来,差点崩溃了不管用的是post还是get解决测试一下 public function request() { echo ....
分类:Web程序   时间:2014-08-18 15:53:02    阅读次数:375
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!