为什么跟随c ++ 11程序崩溃visual studio 2013 express版?

时间:2014-08-14 04:53:19

标签: c++ c++11 visual-studio-2013 initializer-list

以下是导致VS2013快递版崩溃的程序。相同的程序在gcc4.8上成功编译和运行。在我看来它是VS bug。

#include<iostream>
#include<string>

struct x
{
public:
    std::string s{};
    //Does not crash if we replace above line with below one
    //std::string s{"VS2013"};
    int i{10};
public:
    x()  = default;
    ~x() = default;
    x(const x& rhs) = default;
    x& operator=(const x& rhs) = default;
};


int main()
{
    x a;
    std::cout << a.s << std::endl;
    std::cout << a.i << std::endl;
    return 0;
}

我想知道我的假设是正确的还是我错过了什么。

1 个答案:

答案 0 :(得分:1)

为vs 2013安装最新的服务包。它应该消失。