转换初始化列表
我需要将用 C++ 0x 编写的类转换为在 Visual studio 2008 中编译的类。 该代码使用 std::initializer_list。
代码。
template <typename data_type>
class symmatrix
{
public:
typedef data_type value_type;
symmatrix(std::initializer_list<T> const& size, value_type ini = value_type())
: m_data(0), m_memory(false) { resize(size); *this = ini; }
}
以下是必须转换为 VS 2008 可以理解的旧标准的
我真的很难将 100 行新的 C++ 代码更改为旧的 C++。所以,请帮助我。
I need to convert a class written in C++ 0x to one which compiles in Visual studio 2008.
The code uses std::initializer_list.
Following is the code
template <typename data_type>
class symmatrix
{
public:
typedef data_type value_type;
symmatrix(std::initializer_list<T> const& size, value_type ini = value_type())
: m_data(0), m_memory(false) { resize(size); *this = ini; }
}
has to be converted to old standard understood by VS 2008.
I am really struggling to change 100 lines of new C++ code to old C++. So, please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以选择传递一对迭代器,而不是
initializer_list
。但您还必须更改客户端代码。如果它是一个编写良好的类,它必然有其他构造函数,例如我提到的那个。在这种情况下,我建议仅删除需要
initializer_list
的重载。如果客户端代码使用该构造函数,则也可能需要更改。Instead of an
initializer_list
you can choose to pass a pair of iterators. But you'll have to change client code as well.If it is a well-written class, it's bound to have other constructors, such as the one I mentioned. In this case I'd recommend to just remove the overload that takes an
initializer_list
. Client code may have to be changed as well, if it uses that constructor.