1.定义Provide an interface for creating families of related or dependent objects without specifying their concrete classes.(为创建一组相关或相互依赖的对象提供一个接口,而且无须指定...
分类:
其他好文 时间:
2015-07-01 11:35:00
阅读次数:
113
什么是抽象工厂模式:Provides an interface for creating families of related or dependent objects without specifying their concrete classes.1.就是提供一个接口,这个接口的目的是创建对象。2.创建什么样的对象?创建有族群关系的对象。
所谓的产品族群,是指位于不同产品等级结构中功能相...
分类:
其他好文 时间:
2015-06-24 09:23:02
阅读次数:
165
环境:Maven3.2.5+MyEclipse 2015CI
现象:在Maven编译过程中出现错误信息:Using platform encoding (GBK actually) to copy filtered resources, i.e. build is platform dependent!
附:此时Maven工程配置如下:
1、工程属性,编码设置为UTF-8:
...
分类:
其他好文 时间:
2015-06-12 17:27:46
阅读次数:
856
抽象工厂模式:
提供了一个创建一系列相关的或相互依赖的对象的接口而不需要具体指定它们的类型。Provide an interface for creating families of related or dependent objects without specifying their concrete classes.UML类图:主要包括:
AbstractFactory(Continent...
分类:
其他好文 时间:
2015-06-07 01:09:29
阅读次数:
109
What is pagePages are basically a virtual blockPages have fixed size, while block doesn't(dependent on device)What is blockA block is the smallest uni...
分类:
其他好文 时间:
2015-05-30 00:33:30
阅读次数:
134
down vote From access.redhat.com:Sharing_Data_Across_Containers:" Host volume settings are not portable, since they are host-dependent and might not ....
分类:
其他好文 时间:
2015-05-29 23:03:30
阅读次数:
446
一.WITH AS的含义
WITH AS短语,也叫做子查询部分(subquery factoring),可以让你做很多事情,定义一个SQL片断,该SQL片断会被整个SQL语句所用到。有的时候,是为了让SQL语句的可读性更高些, 也有可能是在UNION ALL的不同部分,作为提供数据的部分。
特别对于UNION ALL比较有用。因为UNION ALL的每个部分可能相同,但是如果每个...
分类:
数据库 时间:
2015-05-26 12:44:27
阅读次数:
147
Cakephp 框架帮我们做了很多的工作,的确省了我们很多工作,提高了效率。但是,碰到一些比较复杂的查询时,还是有些问题,官方的cookbook api 有说明一些详细的用法,但感觉还是不太够,有些地方讲的不够清楚。StackOverflow上的这个问题不错http://stackoverflow....
分类:
Web程序 时间:
2015-05-25 20:23:13
阅读次数:
151
执行Maven Install打包的时候,提示以下警告信息:
[WARNING] Using platform encoding (GBK actually) to copy filtered resources, i.e. build is platform dependent!解决方法:
打开项目属性》Resources,按下图修改就好了。...
分类:
其他好文 时间:
2015-05-08 20:24:28
阅读次数:
158
请声明出处:
Socket,网络套接字的类,包括创建、绑定、监听、接受、发送、接收等操作:
/**
* This class encapsulates a system dependent socket in a system independent abstraction
* 这个类封装了一个依赖于系统的套接字系统独立的抽象
* @short A generic socket clas...