JavaScript定义数组有两种方式:1、通过Arrary()构造函数定义数组。2、通过直接赋值法定义数组。Arrary()构造函数定义数组格式一:var name = new Array(num);name[0] = 元素1;……name[num-1] = 元素num;格式二:var name ...
分类:
编程语言 时间:
2014-12-22 22:32:01
阅读次数:
148
declare @sum int,@count intselect @sum=0,@count=0label_1:select @count=@count+1select @sum=@sum+@countif @count<=6goto label_1select @count '数值',@sum ...
分类:
数据库 时间:
2014-12-22 22:31:01
阅读次数:
177
用了这么久的 iPhone,这些技巧你可能都还不知道哦。
分类:
其他好文 时间:
2014-12-22 22:31:12
阅读次数:
229
运算符:一、算术运算符: + - * /% ——取余运算 取余运算的应用场景:1.奇偶数的区分。2.把数变化到某个范围之内。——彩票生成。3.判断能否整除。——闰年、平年。 int a = 10, b = 3;Console.WriteLine("10/3=" + (a / b));Console....
分类:
其他好文 时间:
2014-12-22 22:32:40
阅读次数:
182
QQ空间在输错帐号或密码时会一左一右晃动,这种动画可使用关键帧动画实现。- (void)shakeView:(UIView *)view { CAKeyframeAnimation *shakeAnimation = [CAKeyframeAnimation animation]; sh...
分类:
移动开发 时间:
2014-12-22 22:33:42
阅读次数:
194
Aop又叫面向切面编程,用过spring的同学肯定对它非常熟悉,而在js中,AOP是一个被严重忽视的技术点,这篇就通过下面这几个小例子,来说说AOP在js中的妙用.1, 防止window.onload被二次覆盖.2,无侵入的统计代码.3, 分离表单请求和校验.4,给ajax请求动态添加参数.5,职责...
分类:
Web程序 时间:
2014-12-22 22:30:40
阅读次数:
284
微软MVP Openday 1月30日在北京召开,到时全国上百位 MVP 专家将齐聚北京。当然还有亚太的其他国家地区的MVP 也会来北京,1月31日微软 MVP 项目组主办的年度微软技术社区分享大会--2015 微软社区大课堂 Community Camp !。 超过 30 位微软最有价值专家 MV...
分类:
编程语言 时间:
2014-12-22 22:32:37
阅读次数:
218
With ECMAScript 6 now feature complete, any further changes to the core of JavaScript will happen in ECMAScript 7. I’m pretty excited about the change...
分类:
其他好文 时间:
2014-12-22 22:30:08
阅读次数:
508
MSAlertControllerYou can use AlertController in iOS7!! 你可以在iOS中使用AlertController了MSAlertController has same feature at UIAlertViewController.MSAlertCo...
分类:
其他好文 时间:
2014-12-22 22:32:26
阅读次数:
348
1 @echo off 2 set /p projectName=请输入项目名称: 3 if "%projectName%"=="" goto inputError 4 set /p packageName=请输入包标示名: 5 if "%packageName%"=="" got...
分类:
编程语言 时间:
2014-12-22 22:30:15
阅读次数:
182
';for( $i = 0 ; $i '; flush(); ob_flush(); sleep(1);}echo 'End ...';?>
分类:
Web程序 时间:
2014-12-22 22:31:54
阅读次数:
175
JavaScript数据类型包括两种:1、基本数据类型。2、复合数据类型。基本数据类型number(数值)、string(字符串)、boolean(布尔型)、undefined(未定义)、null(空)复合数据类型Arrary(数值)、Object(对象)、Function(函数)
分类:
编程语言 时间:
2014-12-22 22:30:54
阅读次数:
155
Given a positive integer, return its corresponding column title as appear in an Excel sheet.For example: 1 -> A 2 -> B 3 -> C ... 26 ->...
分类:
其他好文 时间:
2014-12-22 22:30:05
阅读次数:
211
原文:http://www.cnblogs.com/pharen/archive/2012/02/06/2340628.html PHP集成开发环境有很多,如XAMPP、AppServ......只要一键安装就把PHP环境给搭建好了。但这种安装方式不够灵活,软件的自由组合不方便,同时也不利于学习。所...
本文地址:http://www.cnblogs.com/archimedes/p/mapreduce-inverted-index.html,转载请注明源地址。1.倒排索引简介倒排索引(Inverted index),也常被称为反向索引、置入档案或反向档案,是一种索引方法,被用来存储在全文搜索下某个...
分类:
其他好文 时间:
2014-12-22 22:31:22
阅读次数:
190
1、连接库vim ~/.bashrcexport LD_LIBRARY_PATH=/usr/lib:/usr/local/lib:/home/pi/lib:. ~/.bashrc
分类:
系统相关 时间:
2014-12-22 22:28:44
阅读次数:
176
Hub构成了 Eventlet 的事件循环,它分发 I/O 事件、调度 greenthread。Hub的存在使得协程被提升为 greenthreads。Eventlet 有多种hub的实现,所以在使用之前应该选择最适合自己系统的实现:epolls 要求 Python 2.6 或python-epo....
分类:
编程语言 时间:
2014-12-22 22:31:08
阅读次数:
276