前面已经简单介绍过了该框架(不一定是框架),本文开始重点记录其使用过程。可能记录的内容不是太详尽,框架也可能非常烂,但是里面的代码句句是实战项目所得。本文非教唆之类的文章,也非批判之类的文章,更不是炫技之类的文章,只是工作的记录和总结,希望能够给大家一些启迪,忘诸位勿喷!
一. 组建项目需要的...
分类:
其他好文 时间:
2014-05-09 18:12:12
阅读次数:
1864
http://source.android.com/source/downloading.html1.下载repo官网:curl
http://commondatastorage.googleapis.com/git-repo-downloads/repo >
~/bin/repo目前我啥下载不了。...
分类:
移动开发 时间:
2014-05-09 12:31:27
阅读次数:
397
本文之初的目的是讲述设计模式中的
Prototype(原型)模式,但是如果想较清楚地弄明白这个模式,需要了解对象克隆(Object Clone),Clone
其实也就是对象复制。复制又分为了浅度复制(Shallow Copy)和 深度复制(Deep Copy),浅度复制 和 深度复制又是以 如何复制...
分类:
其他好文 时间:
2014-05-08 20:13:45
阅读次数:
339
git revert 撤销
某次操作,此次操作之前和之后的commit和history都会保留,并且把这次撤销作为一次最新的提交 * git revert HEAD 撤销前一次
commit * git revert HEAD^ 撤销前前一次 commit * git revert commit (...
分类:
其他好文 时间:
2014-05-07 18:30:02
阅读次数:
584
http://git.oschina.net/voctrals/
分类:
其他好文 时间:
2014-05-05 11:31:57
阅读次数:
238
__construct, __destruct , __call,
__callStatic,__get, __set, __isset, __unset , __sleep, __wakeup, __toString,
__set_state, __clone and __autoload
分类:
Web程序 时间:
2014-05-05 09:38:23
阅读次数:
488
一:数组复制//方法一//slice()函数将会返回一个新的数组对象 var arr =
[1,2,3,4]; var clone = arr.slice(0); arr.splice(1,2);//删除从位置1开始的两个元素
console.log("arr:" + arr + "\nc...
分类:
编程语言 时间:
2014-05-04 20:41:11
阅读次数:
309