operator + method

StringBuilder operator +(
  1. StringBuilder strBuffer
)

对象相加

Implementation

StringBuilder operator +(StringBuilder strBuffer) {
  append(strBuffer);
  return this;
}