转换初始化列表

发布于 2024-11-26 06:12:13 字数 472 浏览 2 评论 0原文

我需要将用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七秒鱼° 2024-12-03 06:12:13

您可以选择传递一对迭代器,而不是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文