String, StringBuffer, and StringBuilder

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

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

11条回答
  •  花落未央
    2020-11-22 14:16

    ----------------------------------------------------------------------------------
                      String                    StringBuffer         StringBuilder
    ----------------------------------------------------------------------------------                 
    Storage Area | Constant String Pool         Heap                   Heap 
    Modifiable   |  No (immutable)              Yes( mutable )         Yes( mutable )
    Thread Safe  |      Yes                     Yes                     No
     Performance |     Fast                 Very slow                  Fast
    ----------------------------------------------------------------------------------
    

提交回复
热议问题