//数组功能扩展
Array.prototype.each=function(fn){
fn=fn||Function.K;
vara=[];
varargs=Array.prototype.slice.call(arguments,1);
for(vari=0;i<this.length;i++){
varres=fn.apply(this,[this[i],i].concat(args));
if(res!=null)a.push(res);
}
returna;
};
//数组是..
分类:
其他好文 时间:
2014-09-05 18:31:42
阅读次数:
260
本题要求编写程序,按照规定格式输出表格。输入格式: 本题目没有输入。输出格式: 要求严格按照给出的格式输出下列表格:------------------------------------Province Area(km2) Pop.(10K)---------------------...
分类:
其他好文 时间:
2014-09-05 18:00:21
阅读次数:
244
今天用git托管了一个java web项目,由于是web项目,所以要上传jar文件(此项目未使用maven管理),一直使用git commit and push,就是在server上看不到jar文件上传,eclipse环境中的jar文件依旧打着问号(?)解决方法:找到项目其中的 .gitignore...
分类:
系统相关 时间:
2014-09-05 17:50:21
阅读次数:
232
@上一章,介绍了主要的iOS7所增加的API,可以发现,它们不是一个个死的方法,苹果给我们开发者提供的是都是协议接口,所以我们能够很好的单独提出来写成一个个类,在里面实现我们各种自定义效果.
1.先来看看实现UIViewControllerAnimatedTransitioning的自定义动画类
/**
* 自定义的动画类
* 实现协议------>@protoco...
分类:
移动开发 时间:
2014-09-05 16:16:51
阅读次数:
344
1.在本地master上分出一个项目分支 git checkout -b bug1_dujie git checkout -b bug1_dujie origin/master 在远程添加分支 $git push origin :bug1_dujie 删除远程分支 git...
分类:
其他好文 时间:
2014-09-05 16:05:11
阅读次数:
317
iOS7之定制View Controller切换效果
在iOS7之前,View Controller的切换主要有4种:
1. Push/Pop,NavigationViewController
2. Present and dismis Modal
3. UITabBarController
4. addChildViewController(一般用于自定义的继承于 UIViewCont...
分类:
移动开发 时间:
2014-09-05 14:23:41
阅读次数:
255
adb pull push文件出现Permission denied,明明已经root
其实很简单
首先adb root
如果提示 adbd cannot run as root in production builds
安装一个叫超级adbd的apk
地址http://www.anzhi.com/soft_616421.html#
在手机上赋予root权限,再开启用超级adbd...
分类:
数据库 时间:
2014-09-05 14:23:21
阅读次数:
583
/** 修改页面 */ public String editUI() { //准备回显得数据 Role role = roleService.getById(id); ActionContext.getContext().getValueStack().push(role);//下面的方...
分类:
其他好文 时间:
2014-09-04 20:53:10
阅读次数:
234
http://www.cnblogs.com/yuzhongwusan/p/3564907.html1.将arguments转化为数组函数中的预定义变量arguments并非一个真正的数组,而是一个类似数组的对象。它具有length属性,但是没有slice,push,sort等函数,那么如何使arg...
分类:
编程语言 时间:
2014-09-04 18:20:01
阅读次数:
182
1.主要代码:
声明:
private View shareView;
private PopupWindow pop;
在onCreate方法里:
// 引入窗口配置文件
shareView = LayoutInflater.from(this).inflate(
R.layout.jyx_activity_share, null);
// 创建PopupWi...
分类:
移动开发 时间:
2014-09-04 16:58:49
阅读次数:
220