欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

运算符的重载——原型

程序员文章站 2022-06-12 21:46:06
...
#ifndf _VECTOR_H_
#define _VECTOR_H_

class Vector{
    public:
        Vector(int size):m_size(size){
             m_array = new int[size];
        }
        ~Vector(){
             delete m_array;
        }
        int& operator[](int index){
             return m_array[index];
        }
    private;
        int m_size;
        int *m_array;
};

#endif

相关标签: 原型