c++中关于列表初始化vector的问题
巴扎黑
巴扎黑 2017-04-17 14:00:50
0
1
533

为了看一下列表初始化时发生了什么, 我写了如下代码:

#ifndef SCREEN_H
#define SCREEN_H

#include <iostream>

class Screen {
public:
    static int x;
    int y;
    Screen() {
        y = ++x;
        std::cout << "chuangj " << y << std::endl;
    }

    Screen(const Screen& s) {
        y = ++x;
        std::cout << "kaobei " << y << std::endl;
    }
    ~Screen() {

        std::cout << "xigou " << y << std::endl;
    }
};

int Screen::x = 0;

#endif // !SCREEN_H
#include <vector>
#include "Screen.h"


int main(int argc, char* argv[]) {
    Screen s = Screen();
    std::vector<Screen> x{ s };
    std::cout << "第八行" << std::endl;
    x = {};
    std::cout << "over" << std::endl;
    return 0;
}

输出结果很奇怪 :

chuangj 1
kaobei 2
kaobei 3
xigou 2
第八行
xigou 3
over
xigou 1
请按任意键继续. . .

也就是说std::vector<Screen> x{ s };这里居然有两次拷贝构造发生, 不是只需要将s拷贝到vector中吗, 怎么说也只有一次拷贝构造, 为什么会有两次呢?

巴扎黑
巴扎黑

全部回覆(1)
阿神

x{s} 呼叫的是vector( std::initializer_list<T> init, const Allocator& alloc = Allocator() );,在這裡首先你要用構造一個std::initializer_list<T>,{s}這個就是構造一個std::initializer_list<T>,然後再用這個std::initializer_list<T>去構造這個vector,所以這裡呼叫了兩次拷貝構造

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板