# string
2 posts
== vs equals() in Java — What's the difference?
Understanding the difference between the == operator and equals() method in Java, and why using the wrong one leads to subtle bugs.
Java
String Concatenation in Java — concat() vs + vs StringBuilder
Understanding the real differences between concat(), the + operator, and StringBuilder in Java — what actually matters and what doesn't.
Java