码迷,mamicode.com
首页 >  
搜索关键字:open stack    ( 34043个结果
栈的基础操作——2,8,16进制的入栈——数组类型定义
#define stack_init_size 100 #define stackincrement 10 typedef int ElemType; typedef int status; const status error=0; const status ok=1; const status overflow=-2; const int MAXSIZE = 100; typedef st...
分类:其他好文   时间:2014-05-26 06:17:29    阅读次数:243
centos 6.5 LAMP
貌似靠谱(主要centos默认有httpd,是否需要将其remove然后再安装啊,我采用到方法是没有安装,直接用的默认的),大致就是这个样子吧----zzLAMP is a combination of operating system and open-source software stack....
分类:其他好文   时间:2014-05-26 02:43:43    阅读次数:321
activeMQ
ActiveMQ is the most popular and powerful open source Message Bus.ActiveMQ是一个完全支持JMS1.1和J2EE 1.4规范的JMS Provider实现,尽管JMS规范出台已经是很久的事情了,但是JMS在当今的J2EE应用中间...
分类:其他好文   时间:2014-05-26 02:12:12    阅读次数:226
java 拦截器、过滤器、监听器
一、理解Struts2拦截器1. Struts2拦截器是在访问某个Action或Action的某个方法,字段之前或之后实施拦截,并且Struts2拦截器是可插拔的,拦截器是AOP的一种实现.2. 拦截器栈(Interceptor Stack)。Struts2拦截器栈就是将拦截器按一定的顺序联结成一条...
分类:编程语言   时间:2014-05-26 01:09:27    阅读次数:370
Android 系统架构
先看图: The above figure shows the diagram of Android Architecture. The Android OS can be referred to as a software stack of different layers, where eac....
分类:移动开发   时间:2014-05-26 00:59:10    阅读次数:412
Android QuickReturn Listview
QuickReturnListView实现监听listview滚动方向,分为监听上划手势和下滑手势。 当用户上滑时,会在底部弹窗个view,用户反向,该view会自动动画隐藏。 下滑手势监听同理。项目主页:http://www.open-open.com/lib/view/home/13907351...
分类:移动开发   时间:2014-05-26 00:26:16    阅读次数:308
PHP ----学习笔记(一)
什么是PHP: PHP指PHP:超文本预处理器(译者注:PHP:Hypertext Preprocessor,递归命名) PHP是一种服务器端的脚本语言,类似ASP PHP脚本在服务器上执行 PHP支持很多数据库 PHP是一个开源的软件(open source software,OSS)什...
分类:Web程序   时间:2014-05-26 00:01:16    阅读次数:424
设计模式(9.1)--迭代器与组合模式
缓存(caching): 当组合结构很复杂,或者遍历的代价太高,那么实现组合节点的缓存就很有帮助。 (1) Java Collection Framework 指的是一群类的接口。 其中包括了 ArrayList, Vector , LinkedList , Stack ,和 PriorityQueue. 这些类都实现了java.util.Collection接口。 (2) Collect...
分类:其他好文   时间:2014-05-24 23:37:45    阅读次数:432
lua入门之一:c/c++ 调用lua及多个返回值得获取
当 Lua 调用 C 函数的时候,使用和 C 调用 Lua 相同类型的栈来交互。C 函数从栈中获取她的参数,调用结束后将返回结果放到栈中。为了区分返回结果和栈中的其他的值,每个 C 函数还会返回结果的个数(the  function  returns  (in  C)  the  number  of  results  it  is leaving on the stack.)。 // lua...
分类:编程语言   时间:2014-05-24 19:37:41    阅读次数:372
Android Design 1: Back键和Up键在App导航中的表现
一,概念1,Back键一直存在android系统中1-1任何页面下的返回1-2Floatingwindow1-3ContexualActionbar/highlightselect1-4Keyboard2,Up键是随AndroidDesign出来的。2-1androidDesign定义的parentcontainer2-2app的主界面是不存在Up键的二,情景分析1,App内部1-1沿逐级深入路..
分类:移动开发   时间:2014-05-24 17:06:16    阅读次数:317
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!