Skip to content

Instantly share code, notes, and snippets.

@megascus
Created March 19, 2013 13:32
Show Gist options
  • Save megascus/5196123 to your computer and use it in GitHub Desktop.
Save megascus/5196123 to your computer and use it in GitHub Desktop.
//source
public static void main(String... args) {
String str = "";
for(int i = 0;i < 100; i++) {
str += "hoge";
}
}
//decompile
public static void main(String[] args)
{
String str = "";
for (int i = 0; i < 100; i++)
str = str + "hoge";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment