data-structure icon indicating copy to clipboard operation
data-structure copied to clipboard

MyString中的concat有误

Open qx-1024 opened this issue 1 year ago • 0 comments

复制 str 时应该是 buffer[i + j] = str.value[j]; 而不是 buffer[j] = str.value[j]; j 从 0 开始,这样会导致原来的字符串被覆盖了

qx-1024 avatar Apr 28 '24 01:04 qx-1024