码迷,mamicode.com
首页 >  
搜索关键字:back stack(回退栈)    ( 24102个结果
OAF_OAF Debug And Log调试和记录工具的详解(案例)
2014-06-16 BaoXinjian一、摘要在需求后期,对实现该需求的代码进行调试时一个不可忽略的步骤,可以确保代码在上线后尽可能避免出现bug和异常在OAF开发中一般相关的部分主要有1. 使用OAF Bug工具调试代码设定Breakpoint断电查看Exception Stack Trace...
分类:其他好文   时间:2014-06-18 19:00:31    阅读次数:556
Collections.binarySearch
childIDs 数组cid 要插入的对象int index = Collections.binarySearch(childIDs, cid);if (index < 0) {childIDs.insertElementAt(cid, (index + 1) * -1);stack.push(ci...
分类:其他好文   时间:2014-06-18 10:28:08    阅读次数:206
Hadoop 2.2.0 在CentOS6.2 64位下的编译
最近在学习搭建Hadoop,直接从Apache官方网站直接下载最新版本Hadoop2.2,结果运行时发现提示 “libhadoop.so.1.0.0 which might have disabled stack guard” 的警告。Google了一下发现是因为 hadoop 2.2.0提供的是l...
分类:其他好文   时间:2014-06-18 10:10:52    阅读次数:553
Java 线程第三版 第八章 Thread与Collection Class 读书笔记
JDK1.2引入最有争议性的改变是将集合类默认为不是Thread安全性的。 一、Collection Class的概述 1. 具有Threadsafe 的Collection Class: java.util.Vector(List) 列表集合,通过索引操作。 java.util.Stack(List) 继承自Vector,提供LIFO的顺序操作push进入,pop出元素。 ja...
分类:编程语言   时间:2014-06-18 08:07:54    阅读次数:262
FragmentTransaction的commit和commitAllowingStateLoss的区别
1、什么是FragmentTransaction? 使用Fragment时,可以通过用户交互来执行一些动作,比如增加、移除、替换等。 所有这些改变构成一个集合,这个集合被叫做一个transaction。 可以调用FragmentTransaction中的方法来处理这个transaction,并且可以将transaction存进由activity管理的back stack中,这样用户就可以进行...
分类:Windows程序   时间:2014-06-18 00:33:33    阅读次数:405
【足迹C++primer】表达式求值
表达式求值/*** 功能:表达式求值(0到9)* 时间:2014年6月15日08:02:31* 作者:cutter_point*/#include#include#include#includeusing namespace std;stack intStack; //存放数值的栈st...
分类:编程语言   时间:2014-06-18 00:06:54    阅读次数:234
POJ 2019 Cornfields 二维线段树的初始化与最值查询
模板到不行。。连更新都没有。。。存个模板。 理解留到小结的时候再写。 #include #include #include #include #include #include #include #include #include #pragma comment(linker, "/STACK:1024000000"); #define EPS (1e-8) #define...
分类:其他好文   时间:2014-06-17 22:29:20    阅读次数:304
Google NACL 简介
Back to READMEGetting StartedThis page tells you how to install Native Client and run demos, both in and outside of the browser. On Linux and Mac OS X...
分类:其他好文   时间:2014-06-17 21:25:23    阅读次数:418
vector容器做形参
/*容器做参数*/voidfunc(vector<int>&vecTest){for(inti=0;i<10;i++)vecTest.push_back(i);}
分类:其他好文   时间:2014-06-17 16:52:17    阅读次数:241
二维树状数组的区间加减及查询 tyvj 1716 上帝造题的七分钟
具体解释见小结。 #include #include #include #include #include #include #include #include #include #pragma comment(linker, "/STACK:1024000000"); #define EPS (1e-8) #define LL long long #define ULL u...
分类:其他好文   时间:2014-06-17 16:26:54    阅读次数:288
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!