• 如何初始化 vector ? ``` vector v(length);
    1. ```
    2. // 创建含有整数的 vector
    3. std::vector<int> v = {7, 5, 16, 8};