C++—DAY4

2024-04-27 19:36
文章标签 c++ day4

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

在Complex类的基础上,完成^,<<,>>,~运算符的重载

#include <iostream>using namespace std;
class Complex
{int rel;int vir;
public:Complex(){}Complex(int rel,int vir):rel(rel),vir(vir){}void show(){cout << this->rel << "+" << this->vir << "i" << endl;}//成员函数实现+运算符重载Complex operator+(const Complex c1);Complex operator*(const Complex c1);friend Complex operator-(const Complex c1,const Complex c2);friend Complex operator/(const Complex c1,const Complex c2);friend Complex operator%(const Complex c1,const Complex c2);bool operator>(const Complex c1);friend bool operator>=(const Complex c1,const Complex c2);friend bool operator&&(const Complex c1,const Complex c2);Complex operator--();friend Complex operator--(Complex &c1,int);friend istream &operator>>(istream &in,Complex &c1);friend ostream &operator<<(ostream &out,Complex c1);friend Complex operator^(const Complex c1,const Complex c2);Complex operator~();};
Complex Complex::operator+(const Complex c1)
{//实例化一个temp类对象,并调用有参构造Complex temp;temp.rel=this->rel+c1.rel;temp.vir=this->vir+c1.vir;return temp;
}
Complex Complex::operator*(const Complex c1)
{//实例化一个temp类对象,并调用有参构造Complex temp;temp.rel=this->rel*c1.rel;temp.vir=this->vir*c1.vir;return temp;
}
//全局函数版
Complex operator-(const Complex c1,const Complex c2)
{Complex temp;temp.rel=c1.rel-c2.rel;temp.vir=c1.vir-c2.vir;return temp;
}
Complex operator/(const Complex c1,const Complex c2)
{Complex temp;temp.rel=c1.rel/c2.rel;temp.vir=c1.vir/c2.vir;return temp;
}
Complex operator%(const Complex c1,const Complex c2)
{Complex temp;temp.rel=c1.rel%c2.rel;temp.vir=c1.vir%c2.vir;return temp;
}
bool Complex::operator>(const Complex c1)
{return this->rel>c1.rel;
}
bool operator>=(const Complex c1,const Complex c2)
{return c1.rel>=c2.rel;
}
bool operator&&(const Complex c1,const Complex c2)
{return ((c1.rel&&c2.rel)&&(c1.vir&&c2.vir));
}
Complex Complex::operator--()
{--this->rel;--this->vir;return *this;
}
Complex operator--(Complex &c1,int)
{Complex temp(c1.rel--,c1.vir--);return temp;
}istream &operator>>(istream &in,Complex &c1)
{in >> c1.rel >> c1.vir;return in;
}
ostream &operator<<(ostream &out,Complex c1)
{out << c1.rel << "+" << c1.vir << "i" <<endl;return out;
}
Complex operator^(const Complex c1,const Complex c2)
{Complex temp;temp.rel=c1.rel^c2.rel;temp.vir=c1.vir^c2.vir;return temp;
}
Complex Complex::operator~()
{Complex temp;temp.rel=~this->rel;temp.vir=~this->vir;return temp;
}
int main()
{Complex c1(2,5),c2(3,4);Complex c3=c1+c2;c3.show();Complex c4=c1.operator*(c2);c4.show();Complex c5=operator-(c1,c2);c5.show();Complex c6=operator/(c1,c2);c6.show();Complex c7=operator%(c1,c2);c7.show();cout << operator>=(c1,c2) << endl;Complex c8(0,1),c9(1,1);cout << operator&&(c8,c9) << endl;Complex c10=c9--;c10.show();Complex c11=--c8;c11.show();return 0;
}

在昨天作业myString类的基础上,完成+、关系运算符、逻辑运算符、输入输出运算符的重载

#include <iostream>
#include <cstring>
using namespace std;
char c = '\0';
class myString
{private:char *str;          //记录c风格的字符串int size;           //记录字符串的实际长度public://无参构造myString():str(new char),size(0){}//有参构造myString(char *p,int size):str(new char[size+1]),size(size){strcpy(str,p);}myString(string s1):str(new char[s1.size()+1]),size(s1.length()){strcpy(str,s1.c_str());}//拷贝构造myString(const myString &other):str(new char[other.size+1]),size(size){strcpy(str,other.str);}//拷贝赋值函数myString &operator=(const myString &other){//提前把申请的空间释放,重新申请空间,为了防止原有的空间不够存下新的内容if(&other!=this){delete []str;str = new char[other.size+1];strcpy(str,other.str);this->size = other.size;}return *this;}//析构函数~myString(){delete []str;}//判空函数bool empty(){return size==0;}//size函数int size_(){return size;}//c_str函数const char *c_str(){return str;}//at函数char &at(int pos){//判断位置合理性if(pos<0||pos>=size){cout << "位置不合理" << endl;return c;}return str[pos];}myString operator+(const myString m1);friend bool operator==(const myString m1,const myString m2);friend bool operator||(const myString m1,const myString M2);friend ostream &operator<<(ostream &out,myString m1);friend istream &operator>>(istream &in,myString &m1);
};
myString myString::operator+(const myString m1)
{myString temp;temp.str=strcat(this->str,m1.str);temp.size=this->size+m1.size;return temp;
}
bool operator==(const myString m1,const myString m2)
{return (strcmp(m1.str,m2.str)&&(m1.size==m2.size));
}
bool operator||(const myString m1,const myString m2)
{return ((m1.str!=0||m2.str!=0)||(m1.size!=0||m2.size!=0));
}
ostream &operator<<(ostream &out,myString m1)
{out << m1.str << "\t" << m1.size;return out;
}
istream &operator>>(istream &in,myString &m1)
{in >> m1.str >> m1.size;return  in;
}
int main()
{char str[]="hello";myString str1(str,5);cout << str1.empty() << endl;cout << str1.size_() << endl;cout << str1.at(3) << endl;str1.at(3) = '9';cout << str1.at(3) << endl;return 0;
}

思维导图

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



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

相关文章

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最为重要的

Visual Studio 2022 编译C++20代码的图文步骤

《VisualStudio2022编译C++20代码的图文步骤》在VisualStudio中启用C++20import功能,需设置语言标准为ISOC++20,开启扫描源查找模块依赖及实验性标... 默认创建Visual Studio桌面控制台项目代码包含C++20的import方法。右键项目的属性:

c++中的set容器介绍及操作大全

《c++中的set容器介绍及操作大全》:本文主要介绍c++中的set容器介绍及操作大全,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧... 目录​​一、核心特性​​️ ​​二、基本操作​​​​1. 初始化与赋值​​​​2. 增删查操作​​​​3. 遍历方

解析C++11 static_assert及与Boost库的关联从入门到精通

《解析C++11static_assert及与Boost库的关联从入门到精通》static_assert是C++中强大的编译时验证工具,它能够在编译阶段拦截不符合预期的类型或值,增强代码的健壮性,通... 目录一、背景知识:传统断言方法的局限性1.1 assert宏1.2 #error指令1.3 第三方解决

C++11委托构造函数和继承构造函数的实现

《C++11委托构造函数和继承构造函数的实现》C++引入了委托构造函数和继承构造函数这两个重要的特性,本文主要介绍了C++11委托构造函数和继承构造函数的实现,具有一定的参考价值,感兴趣的可以了解一下... 目录引言一、委托构造函数1.1 委托构造函数的定义与作用1.2 委托构造函数的语法1.3 委托构造函

C++11作用域枚举(Scoped Enums)的实现示例

《C++11作用域枚举(ScopedEnums)的实现示例》枚举类型是一种非常实用的工具,C++11标准引入了作用域枚举,也称为强类型枚举,本文主要介绍了C++11作用域枚举(ScopedEnums... 目录一、引言二、传统枚举类型的局限性2.1 命名空间污染2.2 整型提升问题2.3 类型转换问题三、C