码迷,mamicode.com
首页 >  
搜索关键字:模态视图 push pop    ( 17620个结果
warning: malformed '#pragma pack(pop[, id])' - ignored
关于这个警告信息,就是说忽略了我定义的结构体对齐信息,那么他就会按照默认的对齐来了。运行结果自然也是有错误的。经过测试对比,发现是gcc版本问题,我的ubuntu中,gcc版本为4.4.1,还算比较新的。而交叉编译工具链中arm-linux-gcc中的gcc版本为3.4.5,比较老了。查找了一些资料...
分类:其他好文   时间:2014-10-26 10:14:12    阅读次数:228
c++ list sort
1. bool operator mylist; std::list::iterator iter; S a; a.firstname ="dfadf"; a.ID = 5; mylist.push_back (a); a.firstname ="得到"; a.ID = 9;...
分类:编程语言   时间:2014-10-25 14:27:37    阅读次数:279
Exercise 34: Accessing Elements Of Lists
自己的几个list常用用法。mylist = [i for i in range(10)]mylist.pop(-1)mylist.append(9)mylist_1 = [i for i in range(10,20)]mylist_2 = zip(mylist, mylist_1)mylist....
分类:数据库   时间:2014-10-25 11:44:29    阅读次数:213
git还原成某个点
1.本地 git reset --hard commit值 git push -f // 强制同步到git库(git服务器)2.项目所在线上服务器 git reset --hard commit值
分类:其他好文   时间:2014-10-25 02:01:13    阅读次数:197
git学习(3)---远程仓库
本文介绍了git远程库的操作,需要熟练掌握git remote相关的命令。 此外,有两点需要注意: 1、不推荐使用git pull命令,应该先使用git fetch命令同步远程库的内容到本地后,再使用git merge合入到本地仓库的分支中,这样更安全。 2、删除远程库分支的命令是git push origin :branch-name,这个命令不太容易记忆。...
分类:其他好文   时间:2014-10-24 20:46:19    阅读次数:214
Treap 名次树(sbt) 动态插入,查询第k大
#include#include#include#include#include#include#include#include#include#include#include#include#define rep(i,n) for(int i=0;i=a;--i)#define PB push_b...
分类:其他好文   时间:2014-10-24 20:30:31    阅读次数:599
数组实现栈的功能
#include#includeusing namespace std;#define size 5class zhan{public: zhan() { number=0; } void push(int c) { if(number==size) { cout>str1; while(str1[...
分类:编程语言   时间:2014-10-24 16:13:54    阅读次数:134
android 关于修改应用代码后不起作用的问题
今天遇到个问题,在虚拟机上修改了某个应用的代码,编译也通过了。可是push到手机上怎么都不起作用。后来发现我测试机器的 /system/app 目录下每个app都对应一个 xxx.odex 文件。这才发现是自己事先没有删除xxx.odex 文件,导致自己push apk到 /system/app 目...
分类:移动开发   时间:2014-10-24 16:02:31    阅读次数:242
jquery弹出层完美居中
showDiv($("#pop"));function showDiv(obj){ $(obj).show(); center(obj); $(window).scroll(function(){ center(obj); }); $(window).resize(function(){ cen.....
分类:Web程序   时间:2014-10-24 14:20:11    阅读次数:285
操作JavaScript数组
unshift:在数据首段添加元素。push: 在数组的末端添加元素。shift:移除并返回第一个元素,会影响 数组长度。pop:移除并返回最后一个元素。会影响 数组长度。delete 数组[索引] ,删除数组内的一个元素,但是数组长度不会发生变化。join: 把数组元素连接起来,拼成字符串。元素之...
分类:编程语言   时间:2014-10-24 10:35:38    阅读次数:155
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!