Difference between String, StringBuilder and String Buffer
Storage: String uses String Pool, StringBuffer and StringBuilder uses heap
Mutability : String immutable -> String Builder and String buffer are mutable
Efficient : String builder is fastest then string buffer and then String
Thread-Safe => Strin...
hashcodehub.hashnode.dev1 min read