深克隆在JavaScript中打字阵列

发布于 2025-01-24 02:38:37 字数 510 浏览 4 评论 0原文

试图深入克隆数组缓冲区(即,不通过参考,通过值传递)

const deepClone = (buf) => {
    uint32 = new Uint32Array(buf);
    let newBuf = new ArrayBuffer(buf.byteLength);
    let uint32new = new Uint32Array(newBuf);

    //  This works fine
    uint32.forEach((el, i) => {
        uint32new[i] = el;
    });

    //  but this doesn't
    uint32new = uint32.map((el) => {return el});

    //  neither does this
    uint32new = [...uint32];

    return newBuf;
};  

后2仅返回一个空的(0)缓冲区,

为什么?

Trying to deep clone an array buffer (i.e, pass by value not by reference)

const deepClone = (buf) => {
    uint32 = new Uint32Array(buf);
    let newBuf = new ArrayBuffer(buf.byteLength);
    let uint32new = new Uint32Array(newBuf);

    //  This works fine
    uint32.forEach((el, i) => {
        uint32new[i] = el;
    });

    //  but this doesn't
    uint32new = uint32.map((el) => {return el});

    //  neither does this
    uint32new = [...uint32];

    return newBuf;
};  

The latter 2 merely return an empty (0's) buffer

why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文