摘要:
流程定义部署之后,自然就是流程定义列表了,但和前一节一样的是,这里也是和之前单独的activiti没什么差别。因此也不多说。我们先看看列表页面以及相应的代码,然后在一步步说明点击启动button时怎样调用自己定义的form表单。 流程定义列表页面例如以下: 相应的html代码: [html] vie 阅读全文
posted @ 2017-07-26 21:02
zhchoutai
阅读(3228)
评论(0)
推荐(0)
摘要:
从运行make -f config,mk文件開始,config,mk作为当前的makefile文件。将会被make解析,一般make解析Makefile文件流程首先是载入当中include的各种其它mk文件,同一时候在载入的过程中会初始化自己定义的变量,相似于预编译,在完毕各种初始化后,确定目标以及 阅读全文
posted @ 2017-07-26 20:04
zhchoutai
阅读(837)
评论(0)
推荐(0)
摘要:
RangeMap跟一般的Map一样。存储键值对,依照键来取值。不同于Map的是键的类型必须是Range,也既是一个区间。RangeMap在Guava中的定义是一个接口: public interface RangeMap<K extends Comparable, V> { @Nullable // 阅读全文
posted @ 2017-07-26 18:47
zhchoutai
阅读(1530)
评论(0)
推荐(0)
摘要:
Description One measure of ``unsortedness'' in a sequence is the number of pairs of entries that are out of order with respect to each other. For inst 阅读全文
posted @ 2017-07-26 18:14
zhchoutai
阅读(164)
评论(0)
推荐(0)
摘要:
总体差别 1. C/C++是直接执行在机器上(编译后为机器码),而java编译后产生*.class文件(字节码)是执行在java虚拟机上在(JVM),经过JVM解译(机器码)再放到真实机器上执行。JVM相当于用软件构造了一个计算机,有自己的CPU(假的),内存(也是假的)。 C/C++(*.exe) 阅读全文
posted @ 2017-07-26 17:18
zhchoutai
阅读(153)
评论(0)
推荐(0)
摘要:
设计模式-单例模式 一 设计模式概述: java中设计模式一共23种 是解决某一类问题最行之有效的方法 二 单例设计模式: 解决一个类在内存中仅仅存在一个对象的问题 想要保证对象的唯一性: 1,为了避免其它程序过多的建立该类对象。现金支改程序建立该类对象,即构造函数私有化 2,为了让其它程序能够訪问 阅读全文
posted @ 2017-07-26 15:16
zhchoutai
阅读(151)
评论(0)
推荐(0)
摘要:
题目信息 1069. The Black Hole of Numbers (20) 时间限制100 ms 内存限制65536 kB 代码长度限制16000 B For any 4-digit integer except the ones with all the digits being the 阅读全文
posted @ 2017-07-26 11:31
zhchoutai
阅读(237)
评论(0)
推荐(0)
摘要:
#include<bits/stdc++.h> using namespace std; const int inf=1<<24; int main() { int n,i,j,k,e[50][50],u,v,w,low[50],ans; char s; while(~scanf("%d",&n)) 阅读全文
posted @ 2017-07-26 10:51
zhchoutai
阅读(199)
评论(0)
推荐(0)
摘要:
#include <iostream> using namespace std; int leap (int a) { if (a%4==0%a%100!=0||a%400==0) { return 1; } else { return 0; } } int number(int year,int 阅读全文
posted @ 2017-07-26 09:46
zhchoutai
阅读(617)
评论(0)
推荐(0)
摘要:
Prototype原型模式是一种创建型设计模式,Prototype模式同意一个对象再创建另外一个可定制的对象,根本无需知道不论什么怎样创建的细节,工作原理是:通过将一个原型对象传给那个要发动创建的对象,这个要发动创建的对象通过请求原型对象拷贝它们自己来实施创建。 上面是原型模式的UML结构图。 以下 阅读全文
posted @ 2017-07-26 09:06
zhchoutai
阅读(443)
评论(0)
推荐(0)
摘要:
Java缓存server jmemcached http://www.oschina.net/p/jmemcached jmemcached 是一个Java版的 memcached 缓存server,基本上跟 memcached 是兼容的。jmemcached 是使用 Apache MINA 作为无 阅读全文
posted @ 2017-07-26 08:47
zhchoutai
阅读(1661)
评论(0)
推荐(0)

浙公网安备 33010602011771号