码迷,mamicode.com
首页 > 2017年05月04日 > 全部分享
设计模式之组合模式
设计模式之组合模式 Oct 19, 2015 组合模式(Composite)将对象组合成树形结构以表示“部分-整体”的层次结构,组合模式使得用户对单个对象和组合对象的使用具有一致性。 常见的场景有 asp.net 里的控件机制(即 control 里可以包含子 control,可以递归操作、添加、删 ...
分类:其他好文   时间:2017-05-04 13:27:29    阅读次数:248
设计模式之中介者模式
设计模式之中介者模式 Aug 23, 2015 中介者模式(Mediator),用一个中介对象来封装一系列的对象交互。中介者使各对象不需要显式地相互引用,从而使其耦合松散,而且可以独立地改变它们之间的交互。 正文 软件开发中,中介者是一个行为设计模式,通过提供一个统一的接口让系统的不同部分进行通信。 ...
分类:其他好文   时间:2017-05-04 13:27:22    阅读次数:156
Mysql学习之十二:JDBC连接数据库之DriverManager方法
JDBC连接数据库 ?创建一个以JDBC连接数据库的程序,包括7个步骤: 1、载入JDBC驱动程序: 在连接数据库之前。首先要载入想要连接的数据库的驱动到JVM(Java虚拟机)。 这通过java.lang.Class类的静态方法forName(String className)实现。 比如: tr ...
分类:数据库   时间:2017-05-04 13:27:14    阅读次数:302
关于Java Serial Version UID的一些说明
在网络传输Java对象、将Java对象存储到文件、将Java对象以BLOB形式存储到数据库中时,需要对Java对象进行序列化及反序列化,标准模式是实现Serializable接口。 实现上述接口时,需要提供一个Serial Version UID,该UID用于标识类的版本。一个对象被序列化后,只要其 ...
分类:编程语言   时间:2017-05-04 13:27:08    阅读次数:136
HustOJ - 1019
1 #include<iostream> 2 #include<set> 3 #include<string> 4 #include<algorithm> 5 using namespace std; 6 struct Comp//multiset内部排序名为Comp 7 { 8 bool oper ...
分类:其他好文   时间:2017-05-04 13:27:00    阅读次数:159
html5的web存储详解
以前我们在本地存储数据都是用document.cookie来存储的,但是由于其的存储大小只有4K左右,解析也很复杂,给开发带来了诸多的不便.不过现在html5出了web的存储,弥补了cookie的不足,而且开放起来也是相当的方便 web存储分两类 sessionStorage 容量大小约为5M左右, ...
分类:Web程序   时间:2017-05-04 13:26:53    阅读次数:187
HustOJ - 1021
1 #include<iostream> 2 #include<vector> 3 #include<algorithm> 4 #include<string> 5 #include<iomanip> 6 using namespace std; 7 //½á¹¹Ìå: 8 struct stude ...
分类:其他好文   时间:2017-05-04 13:26:44    阅读次数:179
HustOJ - 1018
1 #include <iostream> 2 using namespace std; 3 int main() 4 { 5 bool sushu(int n); 6 long long i,n,s,t,a,b,c,d,e; 7 while (cin>>n) 8 { 9 a=n%10; 10 b= ...
分类:其他好文   时间:2017-05-04 13:26:34    阅读次数:158
HustOJ - 1017
1 #include<iostream> 2 #include<set> 3 using namespace std; 4 int main() 5 { 6 int s=0; 7 int F=479001600; 8 multiset<unsigned int> a; 9 int n; 10 whi ...
分类:其他好文   时间:2017-05-04 13:26:27    阅读次数:94
算法 - 数组位移
public void reindexArray(int[] arr, int step) { int len = arr.length; int s = step % len; int[] a = new int[len]; for (int i = 0; i < len; i++) { ... ...
分类:编程语言   时间:2017-05-04 13:26:17    阅读次数:162
安装Eclipse(windows系统和linux系统)
1. 安装JDK 下载java SE 1.1 windows配置jdk windows配置jdk 1.2 Ubuntu配置jdk http://www.linuxidc.com/Linux/2015-01/111102.htm http://www.cnblogs.com/yxnchinahlj/p ...
分类:Windows程序   时间:2017-05-04 13:26:09    阅读次数:195
HustOJ - 1007
1 #include<stdio.h> 2 int main () 3 { 4 long long a,b,s; 5 6 while(scanf("%lld%lld",&a,&b)==2) 7 { 8 s=a-b; 9 printf("%lld\n",s); 10 } 11 12 return 0; ...
分类:其他好文   时间:2017-05-04 13:26:03    阅读次数:138
5.20亲密数
Q:若整数A的全部因子(包括1,不包括本身)之和等于B,并且整数B的全部因子之和等于A,则称A与B是亲密数。求解3000以内的全部亲密数。 思路:先将1~3000以内所有数的全部因子之和算出来,存入到数组x[]中,这样x[i]中存放的是i的因子之和,寻找{1,2,……3000}范围中所有的亲密数的算 ...
分类:其他好文   时间:2017-05-04 13:25:55    阅读次数:130
dr-helper项目设计介绍(一个包括移动端和Web端的点餐管理系统)
一、源代码路径 https://github.com/weiganyi/dr-helper 二、界面 通过浏览器訪问Web服务,能够看到界面例如以下: ADT-Bundle编译project生成dr-helper.apk。安装后能够看到应用界面例如以下: 三、背景 Java诞生后主要就是用于Web开 ...
分类:移动开发   时间:2017-05-04 13:25:47    阅读次数:341
HustOJ - 1024
1 #include <iostream> 2 #include <string> 3 #include <vector> 4 using namespace std; 5 6 int main() 7 { 8 int n,i,j; 9 string s; 10 cin>>n; 11 12 for( ...
分类:其他好文   时间:2017-05-04 13:25:38    阅读次数:118
hibernate
[java] view plain copy print? [java] view plain copy print? [java] view plain copy print? hibernate投影查询: String hql="select u.id,u.name from user as u ...
分类:Web程序   时间:2017-05-04 13:25:25    阅读次数:236
ASP.NET web application中的redirect
在开发ASP.NET MVC web application过程中,开发上线了新系统后,需要把老系统的url redirect新系统下 其中在项目系统目录下有一个文件 301RedirectsPages.config, 内容如下: ...
分类:移动开发   时间:2017-05-04 13:25:16    阅读次数:184
1448条   上一页 1 ... 51 52 53 54 55 56 57 ... 86 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!