Skip to content

Instantly share code, notes, and snippets.

@mosil
Last active December 31, 2015 19:28
Show Gist options
  • Save mosil/8033326 to your computer and use it in GitHub Desktop.
Save mosil/8033326 to your computer and use it in GitHub Desktop.
單一出口
//單一出口
public String doSomething(MyType type) {
String result;
switch(type) {
type1:
result = "1";
break;
type2:
result = "2";
break;
default:
result = null;
break;
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment