美文网首页leetcode刷题
C++ 利用数组给vector初始化

C++ 利用数组给vector初始化

作者: zoux | 来源:发表于2018-10-14 17:32 被阅读0次

    int b[4] = {3,1,2,4};
    vector<int> v3(&b[0],&b[4]);

    相关文章

      网友评论

        本文标题:C++ 利用数组给vector初始化

        本文链接:https://www.haomeiwen.com/subject/onctzftx.html