简单工厂模式(Simple Factory Pattern)属于创建型模式,又叫做静态工厂方法模式(Static FactoryMethod Pattern),但是不属于23GOF设计模式之一。简单工厂模式是由一个工厂对象决定创建出哪一种产品类的实例。
走别人的的路,不如自己 to do (不如的意思是更)。先敲书上的例子,第一遍也许不懂,第二遍就清晰很多,第三遍就觉得自己能写点东西出来。不要总是觉得自己看不懂,学不好,只有先学了才能更好。没有之前的8个馒头,就没有第9个馒头的饱(好撑啊~~)...
分类:
其他好文 时间:
2014-05-26 05:51:44
阅读次数:
224
Problem Description
In a 2_D plane, there is a point strictly in a regular polygon with N sides. If you are given the distances between it and N vertexes of the regular polygon, can you calculate t...
分类:
其他好文 时间:
2014-05-26 03:50:40
阅读次数:
252
我不是为了输赢,我就是认真!但不管怎么样,我们的主题你是不能换壁纸的!我碰不上右上角的图标,单手操作有个屁用!我们优秀的企业家都是这样马不停蹄的。see you
soon“杜乡微笑”(Duchenne smile)一种是同时用到嘴部与眼部周围肌肉的这种微笑才是发自内心的真诚微笑。
分类:
其他好文 时间:
2014-05-26 02:15:30
阅读次数:
186
做了一年多的桌面软件,最近开始转向Web方面的开发,既然比较熟悉Net那么首当其冲就是学习ASP.Net,以及HTML、CSS、Javascript。为了检验这个把星期来的学习成果,着手做了一个TodoList的小应用,记录于此。一.这个应用解决什么只是作为Any.Do的仿制品而已。。。练练手二.这...
分类:
其他好文 时间:
2014-05-26 00:38:11
阅读次数:
245
you should consider creating a custom View
component and drawing with a Canvas inView.onDraw(). The most convenient aspect
of doing so is that the And...
分类:
其他好文 时间:
2014-05-26 00:05:06
阅读次数:
327
QGtkStyle could not resolve GTK. Make sure you
have installed the proper libraries.sudo apt-get install --reinstall
gtk2-engines-murrine:i386sudo add-...
分类:
其他好文 时间:
2014-05-25 23:45:25
阅读次数:
276
Sencha removed the refreshFn from the pullrefresh
plugin in ST 2.2. Here is an user extension with gives the old functionality
back to you./** * This ...
分类:
其他好文 时间:
2014-05-25 19:39:42
阅读次数:
289
(1)在虚拟机中执行应用程序
(2)程序调用libc里的封装例程 , 封装例程syscall调用,向内核发送系统调用号。具体分析发现。syscall会通过调用__kernel_vsyscall函数发送系统调用号。
(3)__kernel_vsyscall函数执行sysenter快速系统调用,由用户态进入内核态。
(4)sysenter进入内核态时,会先找到执行系统调用的入口函数ia32_sysenter_target。
(5)执行到sysenter_do_call函数处,通过call *sys_call_...
分类:
其他好文 时间:
2014-05-25 13:03:55
阅读次数:
396
背景
大家都知道线程之间共享变量要用volatile关键字。但是,如果不用volatile来标识,会不会导致线程死循环?比如下面的伪代码:
static int flag = -1;
void thread1(){
while(flag > 0){
//wait or do something
}
}
void thread2(){
//do something
f...
分类:
编程语言 时间:
2014-05-25 10:24:14
阅读次数:
220
题目
You are climbing a stair case. It takes n steps to reach to the top.
Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?
解答...
分类:
其他好文 时间:
2014-05-25 00:37:34
阅读次数:
284