Simple Engineering Mode

Source: Internet
Author: User

Simple Factory mode

definition : specifically defines a class to be responsible for creating instances of other classes, and the instances that are created usually have a common parent class or interface;

intention : To provide a class, which is responsible for creating an instance of a specific class according to certain conditions;

1  Public classfactorydemo{2      Public Static voidMain (String []args) {3Ifruit fruit = factory.getfruit ("Orange");4         if(fruit!=NULL){5 System.out.println (Fruit.get ());6         }7         Else{8System.out.println ("What you want is not there."));9         }Ten     } One } A  - Interfaceifruit{ -      PublicString get (); the } -  - classfactory{ -      Public Staticifruit getfruit (String name) { +         if(Name.equals ("Apple"))) -         { +              return NewApple (); A         } at         Else if(Name.equals ("Orange")) -         { -              return NewOrange (); -         } -         Else -         { in             return NULL; -         } to     } + } -  the classAppleImplementsifruit{ *      PublicString Get () { $         return"Picking apples";Panax Notoginseng     } - } the  + classOrangeImplementsifruit{ A      PublicString Get () { the         return"Picking oranges"; +     } -}

Simple Engineering Mode

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.