OOD 小总结

Singleton object:

只能生成一个instance, 就叫singleton object

public class CSingleton
{
   private static CSingleton instance;
   private CSingleton(){} 

   public static CSingleton getInstance(){
       if(instance== null){
          instance= new CSingleton();
       }
      return instance;
   }
};

调用时:

public class SingletonPatternDemo {
   public static void main(String[] args) {
      //Get the only object available
      CSingleton object = CSingleton.getInstance();
   }
}

下面是Singleton与static class的区别。
Singleton object stores in Heap but, static object stores in Stack
We can clone the object of Singleton but, we can not clone the static class object
Singleton class follow the OOP(object oriented principles) but not static class
we can implement interface with Singleton class but not with Static class.

其中什么是OOP:
https://chesterli0130.wordpress.com/2012/10/04/four-major-principles-of-object-oriented-programming-oop/

JAVA static变量:
记:static method 和 static variable 都不用创建 instance,可以类名直接引用。
http://crunchify.com/java-static-methods-variables-static-block-and-class-with-example/

http://blog.csdn.net/zhandoushi1982/article/details/8453522
static的好处是:全局唯一,一改都改。同时引用方便。
static final:全局固定常量

工厂模式:
http://blog.csdn.net/jason0539/article/details/23020989

使用不同factory to create 不同的class,product。Client just need to create the instance to factory. 不用考虑具体product是如何create,生产的。

产品:

abstract class BMW {  
    public BMW(){  
          
    }  
}  
public class BMW320 extends BMW {  
    public BMW320() {  
        System.out.println("制造-->BMW320");  
    }  
}  
public class BMW523 extends BMW{  
    public BMW523(){  
        System.out.println("制造-->BMW523");  
    }  
}  

工厂:

interface FactoryBMW {  
    BMW createBMW();  
}  
  
public class FactoryBMW320 implements FactoryBMW{  
  
    @Override  
    public BMW320 createBMW() {  
  
        return new BMW320();  
    }  
  
}  
public class FactoryBMW523 implements FactoryBMW {  
    @Override  
    public BMW523 createBMW() {  
  
        return new BMW523();  
    }  
}  

Client:

public class Customer {  
    public static void main(String[] args) {  
        FactoryBMW320 factoryBMW320 = new FactoryBMW320();  
        BMW320 bmw320 = factoryBMW320.createBMW();  
  
        FactoryBMW523 factoryBMW523 = new FactoryBMW523();  
        BMW523 bmw523 = factoryBMW523.createBMW();  
    }  
}  
State Machine Design Pattern

Similar to the State design pattern, a class behavior changes based on its state. And State Machine is the same as an intent of State: to make it possible for an object to alter its behavior when its internal state changes. It contains three main classes: State class, Event class, and Context class.

Context classes implements transition logic, and the next state is done by notifying the Context class with an event. State class transits to other state by passing Event to Context.

SNAKE原则

Scenario: case/interface
Necessary: constrain/hypothesis
Application: service/algorithm
Kilobit: Data
Evolve:

比如,design a FM Radio

Steps 1: Enumerate use cases,
Register/Login, Play Music, Music recommendation. 并说明,最重要的feature是什么。

Steps 2: Sort
Priority 1. Play Music
get channels, select channel, play music in this channel

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,732评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,496评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,264评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,807评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,806评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,675评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,029评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,683评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,704评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,666评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,773评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,413评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,016评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,204评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,083评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,503评论 2 343

推荐阅读更多精彩内容

  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 9,369评论 0 23
  • 2012年6月,美国科学家首次提出绘制大脑活动图谱计划,研究人员在《科学》杂志在线版阐述了该计划。未来15年,利...
    Stan森阅读 368评论 0 0
  • 最近忙着背书,背书是为了职称,职称看起来遥遥无期。所以美好的假期显得前路迷茫。我不善言辞,尤其在众多人的表现中。 ...
    mylkevin阅读 170评论 0 0
  • 文图/猫小慧 吃,我生命中最擅长的事! 一生下来,对于吃我自学成才!长大一点,自己买着吃!上班后,更是大吃特吃!南...
    猫小慧阅读 260评论 1 1
  • 白云,飘逸而洒脱,在湛蓝的天空下,自由自在地来去。 常常独自一个人站在田野,痴痴地地遥望白云, 并静静地想:那圣洁...
    王虎林阅读 172评论 0 1