function StringBuilder() { this._strings_ = new Array;}StringBuilder.prototype.append = function (str) { this._strings_.push(str);};StringBuilde...
分类:
Web程序 时间:
2014-07-07 00:46:42
阅读次数:
248
1.github上版本和本地上版本冲突的方法,即提交时会提示如下错误:解决方法,提交时采用如下代码:git push -u origin master -f参考链接: http://blog.csdn.net/shiren1118/article/details/7761203
分类:
其他好文 时间:
2014-07-06 20:57:38
阅读次数:
172
本文描述了GitLab&Git Windows 客户端的新建分支、clone repo、SSH和HTTP认证、add、commit和push流程。
队列queue也是一种线性结构,我们可以再其两端进行操作,它是一种属于先进先出的结构(FIFO)。 数据在只能在队尾进入,且只能在队首出去。 队列与栈差不多,基本操作如下: 1.queue::size() 2.queue::empty() 3.queue::push(typename ...
分类:
其他好文 时间:
2014-07-06 14:26:25
阅读次数:
189
栈是一种线性的结构,先进后出(FILO),我们只能在栈的一端对数据进行操作,数据的插入与删除只能在栈的一端进行。 在STL中的栈stack一共只有5中操作。 1.stack::empty() 2.stack::size() 3.stack::push(typename t) 4.sta...
分类:
其他好文 时间:
2014-07-06 14:24:34
阅读次数:
183
两个办法:1,手动为每一个UIViewController添加navigationItem的leftButton的设置代码2,为UINavigationController实现delegate,在pop和push的时候改变当前和上一页的navigationItem.title以下是封装的一些基础方法...
分类:
移动开发 时间:
2014-07-05 20:30:07
阅读次数:
337
在使用git pull、git push、git clone会报类似如下的错误:
error: The requested URL returned error: 401 Unauthorized while accessing https://git.oschina.net/zemo/demo.git/info/refs
fatal: HTTP request failed
一般...
分类:
系统相关 时间:
2014-07-04 09:27:03
阅读次数:
589
如果出现:
nested push animation can result in corrupted navigation bar
Finishing up a navigation transition in an unexpected state. Navigation Bar subview tree might get corrupted.
一般这种情况是在自定义的t...
分类:
其他好文 时间:
2014-07-04 00:36:55
阅读次数:
223
昨天刚刚学了点git基础操作,但是不幸的是Git@OSC给出公告说尽量使用 https 进行操作。可是在用 https 进行 push 时,都需要输入帐号和密码。各种百度谷歌之后在Git@OSC官网找到了解决方法《https方式使用git@osc设置密码的方式》文中给出了几个方法,并且都非常简单。关...
分类:
其他好文 时间:
2014-07-03 23:48:41
阅读次数:
572
在使用git时,使用git pull,或git push,每次都要我输入用户名和密码,比较麻烦.git有个参数可以解决这个问题。修改./git/config文件,增加[credential] helper = store问题解决。
分类:
其他好文 时间:
2014-07-02 19:33:23
阅读次数:
187