package com.yunkapay.push.mobile.parcelable;import
android.os.Parcel;import android.os.Parcelable;import android.util.Log;import
com.yunkapay.push.mob...
分类:
移动开发 时间:
2014-05-16 06:09:04
阅读次数:
542
//返回到上一个视图-(UIViewController*)popViewControllerAnimated:(BOOL)animated;//返回到指定的视图-(NSArray*)popToViewController:(UIViewController*)viewControlleranimated:(BOOL)animated;//返回到第一页-(NSArray*)popToRootViewControllerAnimated:(BOOL)animated;
分类:
其他好文 时间:
2014-05-15 00:54:32
阅读次数:
233
在学习Stl的过程中,经常看到->符号的重载,但一直不太明白。
今天做了一个小测试,来看看如果调用它。 以list的迭代器为例,在 pointer operator->() const { return
&(operator*());}中加入 cout str_list; str_list.push...
分类:
其他好文 时间:
2014-05-14 10:32:52
阅读次数:
221
这种类似大整数的处理的问题还是比较常见的,这道题应该是非常简单的版本。
题目的要求是这样的,输入的vector靠前的位置是数字的高位,因此应该先求出长度,然后从后面往前算。维护一个变量保存进位,这我就不说了。结果的vector怎么办呢?因为最后有可能有个总的进位,比如999加1,结果的vector会比输入的多出一位,因此结果还是从前往后存简单一些。最后如果有进位,就多push_back一个1,然...
分类:
其他好文 时间:
2014-05-14 00:31:48
阅读次数:
312
前言
欢迎大家我分享和推荐好用的代码段~~
声明
欢迎转载,但请保留文章原始出处:
CSDN:http://www.csdn.net
雨季o莫忧离:http://blog.csdn.net/luckkof
正文
For imap/pop:
EmailServiceStub.java#se...
分类:
移动开发 时间:
2014-05-13 23:03:33
阅读次数:
404
上层为安卓, 下层为调用c/c++ 库
1、将vargind 按官网方法下载源码编译 得Inst目录
2、通过win 下安卓sdk 中 platform-tools 中的adb push Inst 到/data/local 下
3、可把adb.exe所在目录 设置到系统环境变量中
4、在cmd 中把执行adb push Inst /data/local/
5、adb sh...
分类:
移动开发 时间:
2014-05-13 14:03:30
阅读次数:
445
ext4.2需求:清空store1的数据,并把store2的数据加载到store1中。速度太慢,需要优化。原始代码:varstart1=newDate().getTime();
anlyGridStore.removeAll();
varstart2=newDate().getTime();
console.log(start2-start1);//614
analyses.each(function(record){
data.push..
分类:
其他好文 时间:
2014-05-13 03:54:42
阅读次数:
255
1. 先给手机刷root权限,执行命令:adb root adb
remountok后:把tcpdump放到c盘根目录下:C:\2. 执行命令:adb push c:/tcpdump
/data/local/tcpdump(这个命令是把tcpdump拷到手机中去 )3. adb shell chmo...
分类:
移动开发 时间:
2014-05-12 11:43:01
阅读次数:
426
git 是个好东西,刚从svn转过来还不适应,团队使用:合并个人分支:git commit
#(提交至本地)git pull #(将服务器项目与本地项目合并)git push #(将本地项目上传至服务器)(在提交前要git pull
--rebase一下,确保当前的本地的代码为最新。)合并测试分支:...
分类:
其他好文 时间:
2014-05-12 07:50:02
阅读次数:
289
A处理ab,处理cd。然后查找。比赛的时候用的DFS,爆栈了==vector >
V[2];void deal(int x,int y,vector > &V){ while(x>0&&y>0) {
V.push_back(make_pair(x,y)); i...
分类:
其他好文 时间:
2014-05-11 23:39:44
阅读次数:
436