この製品は、文字列の連結操作を使用して、不変のテキスト文字列を作成します。
ループ機能(FORループやWHILEループなど)を使って文字列を構築する場合、+=を使って既存の文字列に追加すると、繰り返しのたびに新しいオブジェクトが生成されることになり、テキスト・バッファ・データ・エレメントを使う場合に比べて非効率になる可能性がある。
The product creates an immutable text string using string concatenation operations.
When building a string via a looping feature (e.g., a FOR or WHILE loop), the use of += to append to the existing string will result in the creation of a new object with each iteration, which can be inefficient in comparison with use of text buffer data elements.