c++(四)

c++(四)

  • 运算符重载
    • 可重载的运算符
    • 不可重载的运算符
    • 运算符重载的格式
    • 运算符重载的方式
      • 友元函数进行运算符重载
      • 成员函数进行运算符重载
  • 模板
    • 定义的格式
    • 函数模板
    • 类模板
  • 标准模板库
    • vector向量容器
    • STL中的list
    • map向量容器

运算符重载

运算符相似,运算符相同,操作数不同,与返回值无关的一组函数
目的:让参与运算的数据类型更多样化—>c++可拓展性的体现
在这里插入图片描述

可重载的运算符

在这里插入图片描述

不可重载的运算符

在这里插入图片描述

运算符重载的格式

在这里插入图片描述

运算符重载的方式

友元函数进行运算符重载

案例1:复数 a+bi

#include <iostream>
using namespace std;
class CComplex
{
public:
	CComplex(int rear = 2, int img = 3) :rear(rear), img(img)
	{
	cout << "CComplex(int,int)" << endl;
	}
	~CComplex()
	{
	cout << "~CComplex()" << endl;
	cout << this << endl;
	}
	void show()
	{
	cout << this->rear << "+" << this->img << "*i" << endl;
	}
	friend CComplex operator+(CComplex& obj1, CComplex& obj2);
private:
	int rear;//实部
	int img;//虚部
};
CComplex operator+(CComplex& obj1, CComplex& obj2)
{
	CComplex obj3;
	cout << &obj3 << endl;
	obj3.rear = obj1.rear + obj2.rear;
	obj3.img = obj1.img + obj2.img;
	return obj3;
}
int main()
{
	CComplex c1(1,2);
	cout << &c1 << endl;
	CComplex c2(2,3);
	cout << &c2 << endl;
	//Complex c3 = c1 + c2;//隐式调用
	CComplex c3 = operator+(c1, c2);//显示调用
	cout << &c3 << endl;
	c3.show();
	return 0;
}

在这里插入图片描述
案例2:重载前置++

#include <iostream>
using namespace std;
//使用友元函数实现++符号的自增
class CComplex
{
public:
	CComplex(int rear = 1, int img = 1);
	~CComplex();
	void show();
	friend void operator++ (CComplex& demo);
private:
	int rear;
	int img;
};
CComplex::CComplex(int rear, int img)
{
	this->rear = rear;
	this->img = img;
	cout << "构造" << endl;
}
CComplex::~CComplex()
{
	cout << "析构" << endl;
}
void CComplex::show()
{
	cout << this->rear << "+" << this->img << "*i" << endl;
}
void operator++ (CComplex& demo)
{
	++demo.rear;
	++demo.img;
}
int main()
{
	CComplex c1(2,3);
	//++c1;//隐式调用
	operator++(c1);
	c1.show();
}

在这里插入图片描述

成员函数进行运算符重载

案例1:重载前置++,后置++

#include <iostream>
using namespace std;
//使用成员函数实现++符号的自增,后++
class CComplex
{
public:
	CComplex(int rear = 1, int img = 1);
	~CComplex();
	void show();
	CComplex& operator++ ();
	CComplex& operator++(int n);
private:
	int rear;
	int img;
};
CComplex::CComplex(int rear, int img)
{
	this->rear = rear;
	this->img = img;
	cout << "构造" << endl;
}
CComplex::~CComplex()
{
	cout << "析构" << endl;
}
void CComplex::show()
{
	cout << this->rear << "+" << this->img << "*i" << endl;
}
CComplex& CComplex::operator++ ()
{
	++this->rear;
	++this->img;
	return *this;
}
CComplex& CComplex::operator++(int n)
{
	CComplex temp = *this;
	this->rear++;
	this->img++;
	return temp;
}
int main()
{
	CComplex c1(2, 3);
	//++c1;//隐式调用
	c1.operator++();//显示调用
	c1.show();

	CComplex c2(3, 4);
	c2.operator++(1).show();
	c2.show();
}

在这里插入图片描述
总结:
<1>友元重载参数要比成员重载的参数多一个,因为成员函数默认有一个this指针
<2>并不是所有的运算符都可以通过友元或者成员重载

cin >> 变量;//只能通过友元函数进行重载

#include <iostream>
using namespace std;
//重载cin,实现可以输入对象
class CComplex
{
private:
	int rear;
	int img;
public:
	void show();
	friend CComplex& operator >> (istream& tmp, CComplex& c1);
protected:
};

void CComplex::show()
{
	cout << this->rear << "+" << this->img << "*i" << endl;
}
CComplex& operator>>(istream& tmp, CComplex& c1)
{
	cout << "rear:" << endl;
	tmp >> c1.rear;
	cout << "img:" << endl;
	tmp >> c1.img;
	return c1;
}

int main()
{
	CComplex c1;
	cin >> c1;
	c1.show();
}

在这里插入图片描述

模板

  • 模板是支持参数化多态的工具,就是让类或者函数声明为一种通用类型,使得类中的某些数据成员或者成员函数的参数、返回值在实际使用时可以是任意类型
  • 减少代码冗余,提高开发效率

在这里插入图片描述

定义的格式

template<class/typename T>
返回值类型 函数名(参数列表)
{
;
}

函数模板

在这里插入图片描述

  • 函数模板是真正的函数吗?不是
  • 什么时候才能变成真正的函数呢?
    在这里插入图片描述
#include <iostream>
using namespace std;
template<typename T>
T MAX(T a, T b) //不占内存空间
{
	return a > b ? a : b;
}
int main()
{
	//实例化模板
	cout << MAX<int>(1, 2) << endl;
	cout << MAX<string>("hello", "c++");
	cout << MAX<int>(3, 4) << endl;//类型相同的模板函数只会生成一次
	return 0;
}

总结:
<1>调用函数时,将模板的数据类型具体化的时候,才会变成真正的函数,此时占内存空间,称为模板
函数
<2>类型相同的模板函数只会生成一次
<3>函数模板可以重载

案例:用模板实现数组的输出

#include <iostream>
using namespace std;
//模板实现数组的输出
template<typename T>
void output(T arr[],int n)
{
	int i;
	for (i = 0; i < n; i++)
	{
		cout << arr[i] << " ";
	}
	cout << endl;
}

int main()
{
	int arr[] = { 1, 2, 3, 4, 5 };
	int length = sizeof(arr) / sizeof(int);
	output<int>(arr, length);

	string brr[] = { "hello", "c++" };
	length = sizeof(brr) / sizeof(string);
	output<string>(brr, length);

	char crr[] = { 'a', 'b', 'c'};
	length = sizeof(crr) / sizeof(char);
	output<char>(crr, length);

	
	return 0;
}

在这里插入图片描述

类模板

实现:链表:带头节点的单向不循环列表
<1>节点类(数据域、指针域)
<2>链表的类(增(尾插法)、删、改、查)、头结点

#include <iostream>
using namespace std;
//结点
class linkNode
{
public:
	int data;
	linkNode* next;
	//构造
	linkNode();
	//析构
	~linkNode();
protected:
};
//操作
class Handle
{
private:
	linkNode* head;
public:
	//构造
	Handle();
	//析构
	~Handle();
	//插入(尾插)
	void insert(int data);
	//查
	void search();

protected:
};


linkNode::linkNode()
{
	this->data = 0;
	this->next = nullptr;
	cout << "构造" << endl;
}
linkNode::~linkNode()
{
	cout << "析构" << endl;
}
Handle::Handle()
{
	this->head = new linkNode;
}
Handle::~Handle()
{
	
}
void Handle::insert(int data)
{
	 //创建一个新结点
	linkNode* pNew = new linkNode;
	//赋值
	pNew->data = data;
	//找尾结点
	linkNode* pFind = this->head;
	while (pFind->next != nullptr)
	{
		pFind = pFind->next;
	}
	//插入
	pFind->next = pNew;
}
void Handle::search()
{
	linkNode* pFind = this->head->next;
	if (pFind == nullptr)
	{
		return;
	}
	while (pFind != nullptr)
	{
		cout << pFind->data << " ";
		pFind = pFind->next;
	}
	cout << endl;
}


int main()
{
	Handle han;
	han.insert(10);
	han.insert(20);
	han.insert(30);

	han.search();
	return 0;
}

类模板:

#include <iostream>
using namespace std;
template <typename T>
//结点
class linkNode
{
public:
	T data;
	linkNode<T>* next;
	//构造
	linkNode();
	//析构
	~linkNode();
protected:
};
//操作
template <typename T>
class Handle
{
private:
	linkNode<T>* head;
public:
	//构造
	Handle();
	//析构
	~Handle();
	//插入(尾插)
	void insert(T data);
	//查
	void search();

protected:
};

template <typename T>
linkNode<T>::linkNode()
{
	//this->data = 0;
	this->next = nullptr;
	cout << "构造" << endl;
}
template <typename T>
linkNode<T>::~linkNode()
{
	cout << "析构" << endl;
}
template <typename T>
Handle<T>::Handle()
{
	this->head = new linkNode<T>;
}
template <typename T>
Handle<T>::~Handle()
{

}
template <typename T>
void Handle<T>::insert(T data)
{
	//创建一个新结点
	linkNode<T>* pNew = new linkNode<T>;
	//赋值
	pNew->data = data;
	//找尾结点
	linkNode<T>* pFind = this->head;
	while (pFind->next != nullptr)
	{
		pFind = pFind->next;
	}
	//插入
	pFind->next = pNew;
}
template <typename T>
void Handle<T>::search()
{
	linkNode<T>* pFind = this->head->next;
	if (pFind == nullptr)
	{
		return;
	}
	while (pFind != nullptr)
	{
		cout << pFind->data << " ";
		pFind = pFind->next;
	}
	cout << endl;
}


int main()
{
	Handle<int> han;
	han.insert(10);
	han.insert(20);
	han.insert(30);

	han.search();

	Handle<string> han2;
	han2.insert("hello");
	han2.insert("c++");
	han2.search();
	return 0;
}

总结:
<1>类模板中使用一个或多个虚拟类型作为其成员数据类型的时候
<2>类模板不能分文件实现

标准模板库

即标准模板库,惠普实验室开发的一系列软件的统称。它是由Alexander Stepanov、Meng Lee和DavidR Musser在惠普实验室工作时所开发出来的。STL主要是一些“容器”的集合,这些“容器”有list、vector、set、map,等等,STL也是算法和其他一些组件的集合,是世界上顶级C++程序员多年的杰作,是泛型编程的一个经典范例。

STL可分为六个部分:
容器(containers)
迭代器(iterators)
空间配置器(allocator)
配接器(adapters)
算法(algorithms)
仿函数(functors)

容器(containers)//类模板
特殊的数据结构,实现了数组、链表、队列、等等,实质是模板类
迭代器(iterators)//对象指针
一种复杂的指针,可以通过其读写容器中的对象,实质是运算符重载
算法(algorithms)//对象的操作
读写容器对象的逻辑算法:排序、遍历、查找、等等,实质是模板函数
空间配置器(allocator)
容器的空间配置管理的模板类
配接器(adapters)
用来修饰容器、仿函数、迭代器接口
仿函数(functors)
类似函数,通过重载()运算符来模拟函数行为的类
组件间的关系
container(容器) 通过 allocator(配置器) 取得数据储存空间,algorithm(算法)通过iterator(迭代器)存取 container(容器) 内容,functor(仿函数) 可以协助 algorithm(算法) 完成不同的策略变化,adapter(配接器) 可以修饰或套接 functor(仿函数)

vector向量容器

底层实现:数组
特点:<1>地址连续
<2>a、通过索引的方式去访问 b、通过迭代器访问
<3>访问方便
<4>插入、删除需要移动元素,不方便
<5>大小不固定
本质:vector是对数组的封装

#include <iostream>
#include <vector>
using namespace std;
/*
* 类似于数组
* 地址连续,可以使用索引访问,也可以使用迭代器访问,查询方便,增加和删除不方便,大小不固定
*/


int main()
{
	//实例化vector类模板
	vector<string> list_vect;
	//增加元素
	//void push_back(const T& x)在容器的末尾插入一个元素
	list_vect.push_back("hello");
	list_vect.push_back("world");
	list_vect.push_back("c++");
	//访问
	//使用索引方式
	//size_type size() const;用来返回容器中元素个数
	for (int i = 0; i < list_vect.size(); i++)
	{
		//const_reference at ( size_type n ) const;获取容器某个位置上的元素值
		cout << list_vect.at(i) << " ";
	}
	cout << endl;

	//使用迭代器访问
	vector<string>::iterator it;
	//获取第二个位置的iterator
	it = ++list_vect.begin();
	//在某位置上增加元素
	list_vect.insert(it, "hahaha");
	//iterator begin()返回第一个元素的迭代器
	//iterator end()返回最后一个元素的下一个位置的迭代器
	for (it = list_vect.begin(); it < list_vect.end(); it++)
	{
		cout << *it << " ";
	}
	cout << endl;


	//删除某一位置上的元素
	//获取第二个位置的iterator
	it = ++list_vect.begin();
	list_vect.erase(it);
	for (it = list_vect.begin(); it < list_vect.end(); it++)
	{
		cout << *it << " ";
	}
	cout << endl;

	//修改第二个位置的值
	/*it = ++list_vect.begin();
	list_vect.erase(it);
	it = ++list_vect.begin();
	list_vect.insert(it, "hahaha");*/

	list_vect.at(1) = "hahaha";
	for (it = list_vect.begin(); it < list_vect.end(); it++)
	{
		cout << *it << " ";
	}
	cout << endl;
	
	return 0;
}

在这里插入图片描述

STL中的list

底层结构:双向链表
特点:
<1>内存中的地址是不连续–>不能通过索引的方式去访问–>访问效率没有vector高
<2>频繁的插入、删除不需要移动元素,效率比vector

#include <iostream>
#include <list>
using namespace std;

class Stu
{
public:
	Stu(int sno = 1, string name = "张三") :sno(sno), name(name)
	{
		cout << "构造" << endl;
	}
	~Stu()
	{
		cout << "析构" << endl;
	}
	void show()
	{
		cout << "学号:" << this->sno << ",姓名:" << this->name << endl;
	}
private:
	int sno;
	string name;
protected:
};
void showList(list<Stu>& list_s)
{
	list<Stu>::iterator it;
	for (it = list_s.begin(); it != list_s.end(); it++)
	{
		it->show();
	}
}

int main()
{
	//实例化类模板
	list<Stu> list_s;
	//插入
	//void push_back ( const T& x );在列表的末尾插入一个元素
	list_s.push_back(Stu());
	//void push_front ( const T& x );在列表的头部插入一个元素
	list_s.push_front(Stu(2, "李四"));
	//iterator insert ( iterator position, const T& x ); 在列表的指定位置插入一个元素
	list<Stu>::iterator it;
	it = ++list_s.begin();//获取第二个位置
	list_s.insert(it, Stu(3, "王五"));

	//查看,只能以迭代器的方式
	/*for (it = list_s.begin(); it != list_s.end(); it++)
	{
		it->show();
	}*/
	showList(list_s);

	//删除
	//iterator erase ( iterator position );删除某个位置的元素
	//it = ++list_s.begin();//获取第二个位置
	it = list_s.begin();
	advance(it, 1);
	list_s.erase(it);
	//查看,只能以迭代器的方式
	/*for (it = list_s.begin(); it != list_s.end(); it++)
	{
		it->show();
	}*/
	showList(list_s);
	//修改
	it = ++list_s.begin();//获取第二个位置
	list_s.erase(it);
	it = ++list_s.begin();//获取第二个位置
	list_s.insert(it, Stu(3, "王五"));
	//查看,只能以迭代器的方式
	/*for (it = list_s.begin(); it != list_s.end(); it++)
	{
		it->show();
	}*/
	showList(list_s);

	return 0;
}

在这里插入图片描述

map向量容器

底层结构:红黑树—>二叉树的一种
以键值对的形式存储
key—>value,key值是唯一的
特点:
<1>查找的速度特别快
<2>自动按照从小到大的顺序去排序
应用场景:频繁的查找

#include <iostream>
#include <map>
using namespace std;

class Stu
{
public:
	Stu(int sno = 1, string name = "张三") :sno(sno), name(name)
	{
		cout << "构造" << endl;
	}
	~Stu()
	{
		cout << "析构" << endl;
	}
	void show()
	{
		cout << "学号:" << this->sno << ",姓名:" << this->name << endl;
	}
	void setname(string name)
	{
		this->name = name;
	}
	
private:
	int sno;
	string name;
protected:
};
void showList(map<int, Stu*> mymap)
{
	map<int, Stu*>::iterator it;
	for (it = mymap.begin(); it != mymap.end(); it++)
	{
		cout << "key:" << it->first << " ";
		it->second->show();
	}
	cout << endl;
}

int main()
{
	//实例化类模板
	map<int, Stu*> mymap;
	map<int, Stu*>::iterator it;
	//插入
	Stu stu1;
	mymap.insert(pair<int, Stu*>(2, &stu1));
	it = mymap.begin();
	Stu stu2(2, "王五");
	mymap.insert(it, pair<int, Stu*>(1, &stu2));
	Stu stu3(3, "李四");
	mymap.insert(pair<int, Stu*>(3, &stu3));
	showList(mymap);

	//删除
	mymap.erase(2);
	showList(mymap);

	//修改
	it = mymap.find(1);
	if (it != mymap.end())
	{
		(*it).second->setname("刘六");
	}

	showList(mymap);

	return 0;
}

在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/652655.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

AI写作工具的革命:AIGC如何提升内容生产效率

AIGC&#xff0c;即人工智能生成内容&#xff0c;是一种新兴的内容生产方式&#xff0c;它利用人工智能技术来自动生成文本、图像、音频、视频等多种形式的内容即进入实际应用层面。 所以AI不再是高深的、让人望尘莫及的算力算法&#xff0c;而是真实地贴近了我们的生活&#…

Java 泛型 <? super T> 中 super 怎么 理解?与 extends 有何不同?

作者&#xff1a;zhang siege 链接&#xff1a;https://www.zhihu.com/question/20400700/answer/91106397 来源&#xff1a;知乎 著作权归作者所有。商业转载请联系作者获得授权&#xff0c;非商业转载请注明出处。 首先&#xff0c;泛型的出现时为了安全&#xff0c;所有与…

经典神经网络(9)VAE模型原理及其在MNIST数据集上的应用

经典神经网络(9)VAE模型原理及其在MNIST数据集上的应用 图片生成领域来说&#xff0c;有四大主流生成模型&#xff1a;生成对抗模型&#xff08;GAN&#xff09;、变分自动编码器&#xff08;VAE&#xff09;、流模型&#xff08;Flow based Model&#xff09;、扩散模型&#…

【最优化方法】实验一 熟悉MATLAB基本功能

实验一  熟悉MATLAB基本功能 实验的目的和要求&#xff1a;在本次实验中&#xff0c;通过亲临使用MATLAB&#xff0c;对该软件做一全面了解并掌握重点内容。 实验内容&#xff1a; &#xff11;、全面了解MATLAB系统 &#xff12;、实验常用工具的具体操作和功能 学习建…

【基础篇-Day8:JAVA字符串的学习】

目录 1、常用API2、String类2.1 String类的特点2.2 String类的常见构造方法2.3 String类的常见面试题&#xff1a;2.3.1 面试题一&#xff1a;2.3.2 面试题二&#xff1a;2.3.3 面试题三&#xff1a;2.3.4 面试题四&#xff1a; 2.4 String类字符串用于比较的方法2.5 String类字…

基坑气膜:建筑工地环保新利器—轻空间

随着城市化进程的加快&#xff0c;建筑行业的飞速发展带来了严重的环境问题&#xff0c;如噪音和粉尘污染&#xff0c;给人们的生活带来诸多不便。为了解决这些问题&#xff0c;建筑行业一直在探索更为环保和高效的施工方式。近年来&#xff0c;基坑气膜技术逐渐崭露头角&#…

【国信华源:以专业服务,协助水利厅抵御强暴雨】

5月18日-19日&#xff0c;广西出现入汛以来最强暴雨天气过程&#xff0c;钦州、防城港、北海、南宁等地出现特大暴雨&#xff0c;多地打破降雨量极值。国信华源技术团队积极行动驻守一线&#xff0c;为打好山洪灾害防御的提前战、主动战提供了技术支撑。 5月17日18时&#xff0…

SOAR-Top 10安全剧本最佳实践-百度网盘下载

概述: SOAR&#xff08;Security Orchestration,Automation and Response安全编排自动化响应&#xff09;&#xff0c;Gartner 对 SOAR 的最新描述性定义&#xff08;摘自 Gartner 报告《Hype Cycle on Threat-Facing Technologies, 2018》) 是&#xff1a;SOAR 是一系列技术的…

基于SpringBoot+Vue在线动漫信息平台设计和实现(源码+LW+部署讲解)

&#x1f339;作者主页&#xff1a;青花锁 &#x1f339;简介&#xff1a;Java领域优质创作者&#x1f3c6;、Java微服务架构公号作者&#x1f604; &#x1f339;简历模板、学习资料、面试题库、技术互助 &#x1f339;文末获取联系方式 &#x1f4dd; &#x1f339;推荐一个人…

使用nexus搭建的nodejs私库,定期清理无用的npm组件,彻底释放磁盘空间

一、背景 昨天我们整理了一篇关于docker私库&#xff0c;如何定期清理以释放磁盘空间的文章。 虽然也提及了npm前端应用的组件该如何定期清理的&#xff0c;本文是对它作一个补充说明。 前文也看到了&#xff0c;npm组件占用的blob空间为180多GB&#xff0c;急需清理。 二、…

K8s证书过期处理

问题描述 本地有一个1master2worker的k8s集群&#xff0c;今天启动VMware虚拟机之后发现api-server没有起来&#xff0c;docker一直退出&#xff0c;这个集群是使用kubeadm安装的。 于是kubectl logs查看了日志&#xff0c;发现证书过期了 解决方案&#xff1a; 查看证书 #…

vue3 部署后修改配置文件

前端项目部署之后&#xff0c;运维可以自行修改配置文件里的接口IP&#xff0c;达到无需再次打包就可以使用的效果 vue2如何修改请看vue 部署后修改配置文件&#xff08;接口IP&#xff09;_vue部署后修改配置文件-CSDN博客 使用前提&#xff1a; vite搭建的vue3项目 使用setu…

IND-ID-CPA 和 IND-ANON-ID-CPA Game

Src: https://eprint.iacr.org/2017/967.pdf

WGCLOUD部署好后,怎么登录WGCLOUD界面

WGCLOUD的server启动完成后&#xff0c;我们在浏览器里输入URL&#xff0c;如下 http://[server主机IP]:9999 注意默认端口就是9999&#xff0c;如果修改过&#xff0c;那么把端口改成自己的实际端口 这样就可以看到登录页面了&#xff0c;默认账号密码是&#xff1a;admin/…

2951. 找出峰值

找出数组中的峰值 给你一个下标从 0 开始的数组 mountain 。你的任务是找出数组 mountain 中的所有 峰值。 以数组形式返回给定数组中 峰值 的下标&#xff0c;顺序不限 。 注意 峰值 是指一个严格大于其相邻元素的元素。数组的第一个和最后一个元素 不 是峰值。 示例 1 …

VSCODE常用插件记录

重点提名&#xff1a; back & ForthBookmarksC/ChighlightSSH FS //SSH插件

《精通Stable Diffusion AI绘画:基础技巧、实战案例与海量资源一站式学习》

随着人工智能技术的迅猛发展&#xff0c;AI绘画已经成为了一个炙手可热的话题。特别是在设计、艺术和创意领域&#xff0c;AI绘画工具的出现无疑为创作者们带来了更多的可能性和便利。《Stable Diffusion AI绘画从提示词到模型出图》这本书&#xff0c;就是一本深入解析Stable …

【IDEA】Redis可视化神器

在开发过程中&#xff0c;为了方便地管理 Redis 数据库&#xff0c;我们可能会使用一些数据库可视化插件。这些插件通常可以帮助你在 IDE 中直观地查看和管理 Redis 数据库&#xff0c;包括查看键值对、执行命令、监视数据库活动等。 IDEA作为IDE界的Jenkins&#xff0c;本身自…

SAP 根据报错消息号快速定位问题

通常用户在业务的操作过程中&#xff0c;经常会遇到报错信息&#xff0c;有些报错是系统控制抛出的信息&#xff0c;但是有些报错的信息是根据不同地点业务场景对填写的数据进行判断校验&#xff0c;然后给出的报错信息&#xff0c;正常情况报错信息一般是有文本&#xff0c;或…

PyTorch 错误 RuntimeError: CUDA error: device-side assert triggered

训练数据的时候出现 RuntimeError:CUDA error:device-side assert triggeredCUDA kernel errors might be asynchronously reported at some other API call, so the stacktrace below might be incorrect.For debugging consider passing CUDA_LAUNCH_BLOCKING1.Compile with …