java - spring MVC框架Controller层中应该使用StringBuffer还是StringBuilder?
大家讲道理
大家讲道理 2017-04-18 10:48:37
0
4
965

spring MVC框架Controller层中应该使用StringBuffer还是StringBuilder?

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

reply all(4)
阿神

If you use it as a global variable, you can only use StringBuffer, because spring mvc is not thread-safe. If it is only used as a local variable, use stringBuilder. The functions of the two of them are exactly the same, but the methods of StringBuffer are all synchronized methods, which improves performance under multi-threading. Worse than StringBuilder.

左手右手慢动作

StringBuffer thread safe
StringBuilder thread unsafe

阿神

Except for the thread problem, I think everything else is the same

左手右手慢动作

There is no thread safety issue when written in a method. . . Stringbuilder speed comparison, it is recommended to use it when operating large amounts of data

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template