})for(let[key,value]ofs){// 遍历 key在前 值在后 结构赋值后 原值 是 i,vconsole.log(key ,value) } 对象数据拷贝 Object.assign() consttarget = {}constsource = {b:4,c:5,a{b:{c:{d:1}}}Object.assign(target,source) 字符串模板 template consta =20constb =10constc = a + b// ...
// 1.初始化字符串(创建一个新的字符串,其中包含string中的所有字符) Status initString(String* S, char* string) { int i = 0; // 获取字符串的长度 int length = getCharArrayLength(string); // 字符串赋值 S->data = (char*)malloc(length * sizeof(char)); if(S->data == NULL) { pri...