抛出异常时编译器错误

时间:2013-08-05 08:56:50

标签: c++ visual-studio-2013

我目前正在学习异常处理,这是我的代码的一部分:

//vector.cpp

#include "vector.h"

Vector::Vector(int s)
{
    if (s < 0) throw length_error{};
    elem = new double[s];
    sz = s;
}

这是我试图通过以下方式测试异常的代码:

try{
    Vector v(-27);
}
catch (length_error)
{
    cout << "There was a negative size for your vector.\n";
}
catch (bad_alloc)
{
    cout << "The memory was not allocated properly.\n";
}

当我尝试运行我的应用程序时,出现以下错误:

error C2440: '<function-style-cast>' : cannot convert from 'initializer-list' to 'std::length_error'

错误在哪里?

编辑:代码是从C++ Programming Language Book复制的。

1 个答案:

答案 0 :(得分:6)

根据cppreference.com std::length_error有两个构造函数:

explicit length_error( const std::string& what_arg );
explicit length_error( const char* what_arg );

您正在尝试使用空参数列表进行构造。您需要将一个字符串传递给构造函数。