文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

C++ 中怎么实现数组类泛型编程

2023-06-04 14:13

关注

这篇文章给大家介绍C++ 中怎么实现数组类泛型编程,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

原创:
C++ 简单实现数组类泛型编程示例

1、使用模板来实现泛型编程
2、本数组应该能够存储各种基础类型,各种复杂的类类型
3、应该实现部分操作符重载


其实操作符重载满满的都是套路。


代码如下:

点击(此处)折叠或打开

模板类实现:

  1. #include<iostream>#include <stdlib.h> #include <string.h>using namespace std;template <typename T>class myarray{        private:                T* array;                unsigned int lenth;        public:                myarray();                myarray(unsigned int len);                myarray(const myarray& a);                myarray& operator=(const myarray& b);                T& operator[](int ind);                ~myarray();};template <typename T>myarray<T>::~myarray(){        if(this->array != NULL)        {                delete [] this->array;                this->array = NULL;        }}template <typename T>myarray<T>::myarray(){        this->array = NULL;        this->lenth = 0;}template <typename T>myarray<T>::myarray(unsigned int len){        this->array = new T[len];        this->lenth = len;        memset(this->array,0,sizeof(T)*len);}template <typename T>myarray<T>::myarray(const myarray<T>& a){        int i;        this->lenth = a.lenth;        this->array = new T[a.lenth];        memset(this->array,0,sizeof(T)*a.lenth);        for(i=0;i<a.lenth;i++)        {                *(this->array+i) = *(a.array+i);        }}template <typename T>myarray<T>& myarray<T>::operator=(const myarray<T>& a){        if(this->array != NULL)        {                delete [] this->array;//调用类的析构函数不能用free                this->array = NULL;        }        this->array = new T[a.lenth];        this->lenth = a.lenth;        for(int i=0;i<a.lenth;i++)        {                *(this->array+i) = *(a.array+i);//元素对象复制调用对象的=操作符重载        }        return *this;}template <typename T>T& myarray<T>::operator[](int ind){        if(ind>=this->lenth)        {                exit(10);        }        return *(this->array+ind);}#include<iostream>#include<stdlib.h>#include<string.h>#include"arra.cpp"using namespace std;class test{        private:                int a;                int b;                char* myc;        public:                test()                {                        a = 0;                        b = 0;                        myc = NULL;                }                test(const test& a)                {                        this->a = a.a;                        this->b = a.b;                        this->myc = (char*)calloc(strlen(a.myc)+1,0);                        strcpy(this->myc,a.myc);                }                friend ostream& operator<<(ostream& out,test& a)                {                        out<<a.a<<endl;                        out<<a.b<<endl;                        cout<<a.myc;                        return out;                }                ~test()                {                        if(myc != NULL)                        {                                free(myc);                                myc = NULL;                        }                }                test& operator=(const test& a)                {                        if(this->myc != NULL)                        {                                free(this->myc);                                this->myc = NULL;                        }                        this->a = a.a;                        this->b = a.b;                        this->myc = (char*)calloc(strlen(a.myc)+1,0);                        strcpy(this->myc,a.myc);                        return *this;                }                test& operator=(const char* a)                {                        if(this->myc != NULL)                        {                                free(this->myc);                                this->myc = NULL;                        }                        if(a == NULL)                        {                                this->myc = (char*)calloc(1,0);                                return *this;                        }                        this->myc = (char*)calloc(strlen(a)+1,0);                        strcpy(this->myc,a);                        return *this;                }};int main(){        myarray<test> a(3); //测试class类数组        a[0] = "asdasd";        a[1] = "test";        a[2] = "kkkk";        myarray<int> b(3); //测试int数组        b[0] = 1;        b[1] = 2;        b[2] = 3;        myarray<char> c(3); //测试char数组        c[0] = 'a';        c[1] = 'b';        c[2] = 'c';        myarray<test> d = a;//测试myarray拷贝构造函数        for(int i=0;i<3;i++)        {                cout<<a[i]<<endl;                cout<<d[i]<<endl;        }        for(int i=0;i<3;i++)        {                cout<<b[i]<<endl;        }        for(int i=0;i<3;i++)        {                 cout<<c[i]<<endl;        }}

关于C++ 中怎么实现数组类泛型编程就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯