c++类模板案例

1. 类模板案例

案例描述: 实现一个通用的数组类,要求如下:

  • 可以对内置数据类型以及自定义数据类型的数据进行存储
  • 将数组中的数据存储到堆区,并用一个未明确的T类型的指针指向这个动态数组
  • 构造函数中定义可以传入数组的容量
  • 提供对应的拷贝构造函数以及operator=防止浅拷贝问题
  • 提供尾插法和尾删法对数组中的数据进行增加和删除
  • 可以通过下标的方式访问数组中的元素
  • 可以获取数组中当前元素个数和数组的容量

2. 代码

#include <iostream>
#include <string>

using namespace std;

class Person
{
public:

    Person(){};

    Person(string name, int age)
    {
        this->m_Name = name;
        this->m_Age = age;
    }

public:
    string m_Name;
    int m_Age;
};


template<class T>
class MyArray{
public:

    //有参构造初始化
    MyArray(int capacity)
    {
        cout << "MyArray有参构造调用" << endl;
        this->m_Capacity = capacity;
        this->m_Size = 0;
        this->pAddress = new T[this->m_Capacity];
    }

    //拷贝构造
    MyArray(const MyArray& arr)
    {
        cout << "MyArray拷贝构造调用" << endl;

        this->m_Capacity = arr.m_Capacity;
        this->m_Size = arr.m_Size;

        // 浅拷贝
        // this->pAddress = arr.pAddress;
        
        //深拷贝
        this->pAddress = new T[this->m_Capacity];

        for(int i=0; i<this->m_Size; i++)
        {
            this->pAddress[i] = arr.pAddress[i];
        }
    }

    // a = b = c
    MyArray& operator=(const MyArray& arr)
    {
        cout << "MyArray operator= 调用" << endl;
        //先判断原来的堆区是否有数据
        if(this->pAddress!= NULL)
        {
            delete[] this->pAddress;
            this->pAddress = NULL;
            this->m_Capacity = 0;
            this->m_Size = 0;
        }

        this->m_Capacity = arr.m_Capacity;
        this->m_Size = arr.m_Size;
        this->pAddress = new T[this->m_Capacity];

        for(int i=0; i<this->m_Size; i++)
        {
            this->pAddress[i] = arr.pAddress[i];
        }

        return *this;
    }
    
    // void Push_Back(T val)
    void Push_Back(const T & val)
    {
        if(this->m_Size !=this->m_Capacity)
        {
            this->pAddress[this->m_Size] = val;
            this->m_Size += 1;
        }
        else
        {
            cout << "超出容量" << endl;
            return;
        }
    }

    void Pop_Back()
    {
        // 让用户访问不到最后一个元素即为尾删
        if(this->m_Size !=0)
        {
            this->m_Size -= 1;
        }
        else
        {
            cout << "数组的大小是0" << endl;
            return;
        }
    }

    //arr[0] = 1 
    T& operator[](int index)
    {
        if(index >= this->m_Size)
        {
            cout << "越界!" << endl;
            // return;
            //TODO
        }
        else
        {
            return this->pAddress[index];
        }
        
    }

    //析构函数
    ~MyArray()
    {
        cout << "MyArray析构函数调用" << endl;
        if(this->pAddress!=NULL)
        {
            delete[] this->pAddress;
            this->pAddress = NULL;
        }
    }

    int getCapacity()
    {
        return m_Capacity;
    }

    int getSize()
    {
        return m_Size;
    }

private:
    
    //指针指向堆区开辟的真实数组
    T * pAddress;

    //数组的容量
    int m_Capacity;

    //数组的大小
    int m_Size;

};

void printArray(MyArray<int>& arr)
{
    cout << "---- start print array ----" << endl;
    for(int i=0; i<arr.getSize(); i++)
    {
        cout << arr[i] << endl;
    }
    cout << "---- end print array ----" << endl;
}

void printArray(MyArray<Person>& arr)
{
    cout << "---- start print array ----" << endl;
    for(int i=0; i<arr.getSize(); i++)
    {
        cout << arr[i].m_Name << "," << arr[i].m_Age << endl;
    }
    cout << "---- end print array ----" << endl;
}

int main(int argc, char** argv)
{
    MyArray<int>arr1(10);

    // MyArray<int>arr2(arr1);

    // MyArray<int>arr3(100);

    // arr3 = arr1;

    for (int i = 0; i < 5; i++)
    {
        arr1.Push_Back(i);
    }

    printArray(arr1);

    arr1.Pop_Back();
    
    cout << arr1.getCapacity() << "," << arr1.getSize() << endl;


    MyArray<Person>arr2(3);

    arr2.Push_Back(Person("deng",24));
    arr2.Push_Back(Person("wang",23));
    arr2.Push_Back(Person("meng",25));

    cout << arr2.getCapacity() << "," << arr2.getSize() << endl;

    printArray(arr2);


    return 0;
}

// 自己第一次写的时候出现的问题:
// 1. 有参构造初始化 不知道使用this
// 2. 开辟空间 不知道使用 T * pAddress
// 3. 析构函数 释放数组空间 delete[] 
// 4. 重载运算符 不知道返回 *this

3. 结果

res

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值