vector的构造函数

vector的构造函数

vector():创建一个空vector
vector(int nSize):创建一个vector,元素个数为nSize
vector(int nSize,const t& t):创建一个vector,元素个数为nSize,且值均为t
vector(const vector&):复制构造函数
vector(begin,end):复制[begin,end)区间内另一个数组的元素到vector中,注意最后面的end其实并不包括,此函数也可以认为是vector(begin, begin + lenth)

vector判空

void IsEmpty(const vector<int>& ve)
{
    if (ve.begin() == ve.end()) {
        cout << "size of ve: " << ve.size() << " begin == end" << endl;
    }
}

void func()
{
    vector<int> vec;
    IsEmpty(vec);
    vec.push_back(1);
    vec.pop_back();
    IsEmpty(vec);
}

结果输出为

size of ve: 0 begin == end
size of ve: 0 begin == end

当vector容量为空时,迭代器begin == end

使用构造函数

#include <iostream>
#include <vector>
#include <string>

using namespace std;

template <class T>
void printVector(const vector<T>& ve)
{
    for (auto e : ve) {
        cout << e << " ";
    }
    cout << endl;
}

void f()
{
    int nums[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
    
    vector<int> ve1(nums, nums + 7);
    cout << "ve1: " << endl;
    printVector(ve1);
    
    const char *p = "hello world";
    vector<char> ve2(p, p + 12);
    cout << "ve2: " << endl;
    printVector(ve2);
    
    vector<string> ve3(7, "ha");
    cout << "ve3: " << endl;
    printVector(ve3);
    
    vector<int> ve4(30);
    cout << "ve4: " << endl;
    printVector(ve4);
}

int main()
{
    f();
    
	return 0;
}

输出

ve1: 
1 2 3 4 5 6 7 
ve2: 
h e l l o   w o r l d  
ve3: 
ha ha ha ha ha ha ha 
ve4: 
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

使用vector(int nSize)得到的vector内会初始化为0?
通过验证得到,vector, map<type, int>的初始化时,都会把数据初始化为0。

    原文作者:jfhe_9954
    原文地址: https://blog.csdn.net/jfhe_9954/article/details/116141971
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞