String, StringBuffer, and StringBuilder

后端 未结 11 1529
谎友^
谎友^ 2020-11-22 13:52

Please tell me a real time situation to compare String, StringBuffer, and StringBuilder?

11条回答
  •  深忆病人
    2020-11-22 14:22

    Also, StringBuffer is thread-safe, which StringBuilder is not.

    So in a real-time situation when different threads are accessing it, StringBuilder could have an undeterministic result.

提交回复
热议问题