It's System.Text.StringBuilder
. Note that in modern Java you'd use java.lang.StringBuilder
too. (It's like StringBuffer
, but without the synchronization - I can't remember the last time I wanted the synchronization of StringBuffer
. Note that the .NET StringBuilder
isn't thread-safe either, but again, I can't remember the last time I found that to be a problem.)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…