Use map to go out if Else_ code elevation

Source: Internet
Author: User
Import Java.util.HashMap;

Import Java.util.Map;
	public class Test {static Map<string, operate> operates = new hashmap<string, operate> ();
		static {operates.put ("upper", New Upperoperate ());
		Operates.put ("Lower", New Loweroperate ());
		Operates.put ("reverse", New Reverseoperate ());
	Operates.put ("Removeblank", New Removeblankoperate ());
		public static void Main (string[] args) {String Operatetype = "Removeblank";
		
		String content = "Love coding!";
		Operate Operate = Operates.get (Operatetype);
			if (operate!= null) {String result = operate.handle (content);
		SYSTEM.OUT.PRINTLN (result);

}} interface Operate {public string handle (string content);} /** * Capital Operation */class Upperoperate implements Operate {@Override public string handle (string content) {if content
		= = null) {return content;
	return Content.touppercase (); }/** * Lowercase operation/class Loweroperate implements Operate {@Override public string handle (string ContenT) {if (content = = null) {return content;
	return Content.tolowercase (); }/** * Reverse operation */class Reverseoperate implements Operate {@Override public string handle (string content) {if (content = = null)
		{return content;
	Return to new StringBuffer (content). Reverse (). toString (); 
		}/** * Remove whitespace operation/class Removeblankoperate implements Operate {@Override public string handle (string content) {
		if (content = = null) {return content;
	Return Content.replaceall ("\\s*|\t|\r|\n", ""); }
	
}

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.