3.28 c++

2024-03-29 05:12
文章标签 c++ 3.28

本文主要是介绍3.28 c++,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

算数运算符

#include <iostream>
using namespace std;
class Num
{int rel;   //实部int vir;   //虚部
public:Num():rel(2),vir(1){}Num(int rel,int vir):rel(rel),vir(vir){}Num &operator=(const Num &other){cout << "Num的拷贝赋值函数" << endl;this->rel = other.rel;this->vir = other.vir;return *this;}friend Num operator+(const Num n1,const Num n2);friend Num operator-(const Num n1,const Num n2);friend Num operator*(const Num n1,const Num n2);friend Num operator/(const Num n1,const Num n2);friend Num operator%(const Num n1,const Num n2);Num operator+(const Num n1);Num operator-(const Num n1);Num operator*(const Num n1);Num operator/(const Num n1);Num operator%(const Num n1);void show();
};Num Num::operator+(const Num n1 )
{       Num temp;            temp.rel=this->rel+n1.rel;temp.vir=this->vir+n1.vir;return temp;
}
Num Num::operator-(const Num n1)
{Num temp;temp.rel=this->rel-n1.rel;temp.vir=this->vir-n1.vir;return temp;
}
Num Num::operator*(const Num n1)
{Num temp;temp.rel=this->rel*n1.rel;temp.vir=this->vir*n1.vir;return temp;
}
Num Num::operator/(const Num n1)
{Num temp;temp.rel=this->rel/n1.rel;temp.vir=this->vir/n1.vir;return temp;
}
Num Num::operator%(const Num n1)
{Num temp;temp.rel=this->rel%n1.rel;temp.vir=this->vir%n1.vir;return temp;
}//全局函数版的加法运算符重载
Num operator+(const Num n1,const Num n2)
{Num temp;temp.rel = n1.rel+n2.rel;temp.vir = n1.vir+n2.vir;return temp;
}
//减法
Num operator-(const Num n1,const Num n2)
{Num temp;temp.rel = n1.rel-n2.rel;temp.vir = n1.vir-n2.vir;return temp;
}
Num operator*(const Num n1,const Num n2)
{Num temp;temp.rel = n1.rel*n2.rel;temp.vir = n1.vir*n2.vir;return temp;
}
Num operator/(const Num n1,const Num n2)
{Num temp;temp.rel = n1.rel/n2.rel;temp.vir = n1.vir/n2.vir;return temp;
}
Num operator%(const Num n1,const Num n2)
{Num temp;temp.rel = n1.rel%n2.rel;temp.vir = n1.vir%n2.vir;return temp;
}
void Num::show()
{cout << rel << "+" << vir << "i" << endl;
}
int main()
{Num n1;Num n2(1,4);Num n3;n3 = n1+n2;n3.show();return 0;
}

关系运算符

#include <iostream>using namespace std;
class Num
{int rel;   //实部int vir;   //虚部
public:Num():rel(2),vir(1){}Num(int rel,int vir):rel(rel),vir(vir){}Num &operator=(const Num &other){cout << "Num的拷贝赋值函数" << endl;this->rel = other.rel;this->vir = other.vir;return *this;}friend bool operator>(const Num n1,const Num n2);friend bool operator>=(const Num n1,const Num n2);friend bool operator<(const Num n1,const Num n2);bool operator<=(const Num n1);bool operator==(const Num n1);bool operator!=(const Num n1);
};
bool operator>(const Num n1,const Num n2)
{if(n1.rel>n2.rel)  {return n1.rel>n2.rel;}else if(n1.rel==n2.rel)  {return n1.vir>n2.vir;}return n1.rel>n2.rel;
}
bool operator>=(const Num n1,const Num n2)
{if(n1.rel>n2.rel)  {return n1.rel>=n2.rel;}else if(n1.rel==n2.rel)  {return n1.vir>=n2.vir;}return n1.rel>=n2.rel;
}
bool operator<(const Num n1,const Num n2)
{if(n1.rel<n2.rel)  {return n1.rel<n2.rel;}else if(n1.rel==n2.rel)  {return n1.vir<n2.vir;}return n1.rel<n2.rel;
}
bool Num::operator<=(const Num n1)
{if(this->rel<n1.rel)  {return this->rel<=n1.rel;}else if(this->rel==n1.rel)  {return this->vir<=n1.vir;}return this->rel<=n1.rel;
}
bool Num::operator==(const Num n1)
{if(this->rel==n1.rel)  {return this->vir==n1.vir;}return this->rel==n1.rel;
}
bool Num::operator!=(const Num n1)
{if(this->rel!=n1.rel)  {return this->rel!=n1.rel;}else if(this->rel==n1.rel)  {return this->vir!=n1.vir;}return this->rel!=n1.rel;
}
int main()
{return 0;
}

逻辑运算符

#include <iostream>using namespace std;
class Num
{int rel;   //实部int vir;   //虚部
public:Num():rel(2),vir(1){}Num(int rel,int vir):rel(rel),vir(vir){}Num &operator=(const Num &other){cout << "Num的拷贝赋值函数" << endl;this->rel = other.rel;this->vir = other.vir;return *this;}friend bool operator&&(const Num n1,const Num n2);friend bool operator||(const Num n1,const Num n2);};
bool operator&&(const Num n1,const Num n2)
{if(n1.rel&&n2.rel){return n1.vir&&n2.vir;}return n1.rel&&n2.rel;
}
bool operator||(const Num n1,const Num n2)
{if(n1.rel||n2.rel){return n1.vir||n2.vir;}return n1.rel||n2.rel;
}
int main()
{cout << "Hello World!" << endl;return 0;
}

这篇关于3.28 c++的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/857687

相关文章

C++11范围for初始化列表auto decltype详解

《C++11范围for初始化列表autodecltype详解》C++11引入auto类型推导、decltype类型推断、统一列表初始化、范围for循环及智能指针,提升代码简洁性、类型安全与资源管理效... 目录C++11新特性1. 自动类型推导auto1.1 基本语法2. decltype3. 列表初始化3

C++11右值引用与Lambda表达式的使用

《C++11右值引用与Lambda表达式的使用》C++11引入右值引用,实现移动语义提升性能,支持资源转移与完美转发;同时引入Lambda表达式,简化匿名函数定义,通过捕获列表和参数列表灵活处理变量... 目录C++11新特性右值引用和移动语义左值 / 右值常见的左值和右值移动语义移动构造函数移动复制运算符

C++中detach的作用、使用场景及注意事项

《C++中detach的作用、使用场景及注意事项》关于C++中的detach,它主要涉及多线程编程中的线程管理,理解detach的作用、使用场景以及注意事项,对于写出高效、安全的多线程程序至关重要,下... 目录一、什么是join()?它的作用是什么?类比一下:二、join()的作用总结三、join()怎么

C++中全局变量和局部变量的区别

《C++中全局变量和局部变量的区别》本文主要介绍了C++中全局变量和局部变量的区别,全局变量和局部变量在作用域和生命周期上有显著的区别,下面就来介绍一下,感兴趣的可以了解一下... 目录一、全局变量定义生命周期存储位置代码示例输出二、局部变量定义生命周期存储位置代码示例输出三、全局变量和局部变量的区别作用域

C++中assign函数的使用

《C++中assign函数的使用》在C++标准模板库中,std::list等容器都提供了assign成员函数,它比操作符更灵活,支持多种初始化方式,下面就来介绍一下assign的用法,具有一定的参考价... 目录​1.assign的基本功能​​语法​2. 具体用法示例​​​(1) 填充n个相同值​​(2)

c++ 类成员变量默认初始值的实现

《c++类成员变量默认初始值的实现》本文主要介绍了c++类成员变量默认初始值,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录C++类成员变量初始化c++类的变量的初始化在C++中,如果使用类成员变量时未给定其初始值,那么它将被

C++中NULL与nullptr的区别小结

《C++中NULL与nullptr的区别小结》本文介绍了C++编程中NULL与nullptr的区别,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编... 目录C++98空值——NULLC++11空值——nullptr区别对比示例 C++98空值——NUL

C++ Log4cpp跨平台日志库的使用小结

《C++Log4cpp跨平台日志库的使用小结》Log4cpp是c++类库,本文详细介绍了C++日志库log4cpp的使用方法,及设置日志输出格式和优先级,具有一定的参考价值,感兴趣的可以了解一下... 目录一、介绍1. log4cpp的日志方式2.设置日志输出的格式3. 设置日志的输出优先级二、Window

从入门到精通C++11 <chrono> 库特性

《从入门到精通C++11<chrono>库特性》chrono库是C++11中一个非常强大和实用的库,它为时间处理提供了丰富的功能和类型安全的接口,通过本文的介绍,我们了解了chrono库的基本概念... 目录一、引言1.1 为什么需要<chrono>库1.2<chrono>库的基本概念二、时间段(Durat

C++20管道运算符的实现示例

《C++20管道运算符的实现示例》本文简要介绍C++20管道运算符的使用与实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录标准库的管道运算符使用自己实现类似的管道运算符我们不打算介绍太多,因为它实际属于c++20最为重要的