C&C++   发布时间:2022-04-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了c – 这段代码中数组暗淡意味着什么?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我在阅读C编程语言第4版时遇到了这段代码

template<class T>
class Matrix {
    array<int,2> dim; // two dimensions

    T∗ elem; // pointer to dim[0]*dim[1] elements of type T

public:
    Matrix(int d1,int d2) :dim{d1,d2},elem{new T[d1∗d2]} {} // error handling omitted

    int size() const { return dim[0]∗dim[1]; }

    Matrix(const Matrix&); // copy constructor

    Matrix& operator=(const Matrix&); // copy assignment

    Matrix(Matrix&&); // move constructor

    Matrix& operator=(Matrix&&); // move assignment

    ˜Matrix() { delete[] elem; }
    // ...
};

该类中有两个数据成员,其中一个是类型为T的指针.我无法理解什么是数组< int,2>昏暗的意思.

解决方法

这是利用标准库中的std :: array.你可以在这里找到详细的参https://en.cppreference.com/w/cpp/container/array

阵列< INT,N> X;

声明一个长度为x的整数数组;在你的情况下x是2.

这稍后用于存储矩阵的形状.

大佬总结

以上是大佬教程为你收集整理的c – 这段代码中数组暗淡意味着什么?全部内容,希望文章能够帮你解决c – 这段代码中数组暗淡意味着什么?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。