A java blog with a collection of examples and tutorials on Java and related technologies. (Under maintenance with continuous updates) Be in touch with java jazzle or k2java.blogspot.com.
String concatenation operator is +.eg. "ab" + "cd" = "abcd"
i.e.
String s1 = "ab";String s2 = "cd";String s3 = s1+s2;
No comments:
Post a Comment