Index Page : Link
Donate : Link
Medium Link : Link
Applications : Link

- String objects are immutable, not changed
- StringBuffer objects are mutable, changed
- After creating String object, it can not be changed but in StringBuffer it can be easily changed.
package com.example.string;
public class Test {
public static void main(String... args) {
String s = new String("Code");
s.concat("Factory");
System.out.println(s); // Code
String s1 = s.concat("Factory");
System.out.println(s1); // CodeFactory
}
}
package com.example.string;
public class Test {
public static void main(String... args) {
StringBuffer sb = new StringBuffer("Code");
sb.append("Factory");
System.out.println(sb); // CodeFactory
}
}

Wow! Thank you! I always wanted to write on my site something like that. Can I implement a portion of your post to my website?
LikeLiked by 1 person
Thank you Reid Werber
Please check new blog https://bit.ly/31989Yt
You’ll find best Android Apps on new blog
Download | Comment | Share
Buy Me A Coffee if you want, Find “Donate” link in Menu
LikeLike
WONDERFUL Post.thanks for share..more wait .. …
LikeLiked by 1 person
Thank you Livia Elena
Please check new blog https://bit.ly/31989Yt
You’ll find best Android Apps on new blog
Download | Comment | Share
Buy Me A Coffee if you want, Find “Donate” link in Menu
LikeLike
Heya i am for the first time here. I found this board and I to find It truly useful & it helped me out a lot. I’m hoping to present one thing back and help others such as you helped me.
LikeLiked by 1 person
Thank you Cami Ancrum
Please check new blog https://bit.ly/31989Yt
You’ll find best Android Apps on new blog
Download | Comment | Share
Buy Me A Coffee if you want, Find “Donate” link in Menu
LikeLike