in my classes when writing the toString () method, I always use ToStringBuilder from org.apache.commons
And when I extend other classes, I use appendSuper()and then myappends
Question:
Are there any real differences in performance:
appendSuper(super.toString())
instead
append(super.toString())
Type of fictitious question.
Greetings
source
share