strings
pub struct Builder {
mut:
buf []u8 //以字节数组的方式存储字符串,并可以追加内容到字节数组中
pub mut:
len int //动态字符串长度
initial_size int = 1 //初始大小
}最后更新于
pub struct Builder {
mut:
buf []u8 //以字节数组的方式存储字符串,并可以追加内容到字节数组中
pub mut:
len int //动态字符串长度
initial_size int = 1 //初始大小
}最后更新于