Java Programming Ideas: Design Patterns (not updated regularly)

Source: Internet
Author: User

1. Strategy design mode

Creating a method that can vary depending on the parameter object being passed is called a policy design pattern. This type of method contains a fixed portion of the algorithm that is requested to execute, and the "policy" contains the changed parts. A policy is a parameter object that is passed in. In the following code example, the process object is a policy. Applied on the S.

code example:

classProcess { PublicString GetName () {returngetclass (). Getsimplename (); } object process (object input) {returninput; }}classUpcaseextendsProcess {String process (Object input) {return(String) (input). toUpperCase (); }}classlowercaseextendsProcess {String process (Object input) {return(String) (input). toLowerCase (); }} Public classstrategy{ Public Static voidprocess (process P,object s) {System.out.println ("Using Process" +p.getname ());    System.out.println (p.process (s)); }     Public StaticString s= "This is strategy design model!";  Public Static voidMain (string[] args) {process (NewUpcase (), s); Process (Newlowercase (), s); }} output: Using Process upcasethis is strategy DESIGN MODEL!Using Process Lowercase ThisIS strategy design model!

Java Programming Ideas: Design Patterns (not updated regularly)

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.