Skip to content

Instantly share code, notes, and snippets.

@johobemax
Created June 25, 2010 05:37
Show Gist options
  • Save johobemax/452467 to your computer and use it in GitHub Desktop.
Save johobemax/452467 to your computer and use it in GitHub Desktop.
public class StringTest2
{
public static void main(String[] args)
{
String a = "Java ";
int b = 1;
int c = 2;
String d = a + b + c;
String e = a + (b + c);
System.out.println(d);
System.out.println(e);
}
}
@johobemax
Copy link
Author

String型のテストその2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment