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++ 中的 if-constexpr语法和作用

《C++中的if-constexpr语法和作用》if-constexpr语法是C++17引入的新语法特性,也被称为常量if表达式或静态if(staticif),:本文主要介绍C++中的if-c... 目录1 if-constexpr 语法1.1 基本语法1.2 扩展说明1.2.1 条件表达式1.2.2 fa

C++中::SHCreateDirectoryEx函数使用方法

《C++中::SHCreateDirectoryEx函数使用方法》::SHCreateDirectoryEx用于创建多级目录,类似于mkdir-p命令,本文主要介绍了C++中::SHCreateDir... 目录1. 函数原型与依赖项2. 基本使用示例示例 1:创建单层目录示例 2:创建多级目录3. 关键注

C++从序列容器中删除元素的四种方法

《C++从序列容器中删除元素的四种方法》删除元素的方法在序列容器和关联容器之间是非常不同的,在序列容器中,vector和string是最常用的,但这里也会介绍deque和list以供全面了解,尽管在一... 目录一、简介二、移除给定位置的元素三、移除与某个值相等的元素3.1、序列容器vector、deque

C++常见容器获取头元素的方法大全

《C++常见容器获取头元素的方法大全》在C++编程中,容器是存储和管理数据集合的重要工具,不同的容器提供了不同的接口来访问和操作其中的元素,获取容器的头元素(即第一个元素)是常见的操作之一,本文将详细... 目录一、std::vector二、std::list三、std::deque四、std::forwa

C++字符串提取和分割的多种方法

《C++字符串提取和分割的多种方法》在C++编程中,字符串处理是一个常见的任务,尤其是在需要从字符串中提取特定数据时,本文将详细探讨如何使用C++标准库中的工具来提取和分割字符串,并分析不同方法的适用... 目录1. 字符串提取的基本方法1.1 使用 std::istringstream 和 >> 操作符示

C++原地删除有序数组重复项的N种方法

《C++原地删除有序数组重复项的N种方法》给定一个排序数组,你需要在原地删除重复出现的元素,使得每个元素只出现一次,返回移除后数组的新长度,不要使用额外的数组空间,你必须在原地修改输入数组并在使用O(... 目录一、问题二、问题分析三、算法实现四、问题变体:最多保留两次五、分析和代码实现5.1、问题分析5.

C++ 各种map特点对比分析

《C++各种map特点对比分析》文章比较了C++中不同类型的map(如std::map,std::unordered_map,std::multimap,std::unordered_multima... 目录特点比较C++ 示例代码 ​​​​​​代码解释特点比较1. std::map底层实现:基于红黑

C++中函数模板与类模板的简单使用及区别介绍

《C++中函数模板与类模板的简单使用及区别介绍》这篇文章介绍了C++中的模板机制,包括函数模板和类模板的概念、语法和实际应用,函数模板通过类型参数实现泛型操作,而类模板允许创建可处理多种数据类型的类,... 目录一、函数模板定义语法真实示例二、类模板三、关键区别四、注意事项 ‌在C++中,模板是实现泛型编程

利用Python和C++解析gltf文件的示例详解

《利用Python和C++解析gltf文件的示例详解》gltf,全称是GLTransmissionFormat,是一种开放的3D文件格式,Python和C++是两个非常强大的工具,下面我们就来看看如何... 目录什么是gltf文件选择语言的原因安装必要的库解析gltf文件的步骤1. 读取gltf文件2. 提

C++快速排序超详细讲解

《C++快速排序超详细讲解》快速排序是一种高效的排序算法,通过分治法将数组划分为两部分,递归排序,直到整个数组有序,通过代码解析和示例,详细解释了快速排序的工作原理和实现过程,需要的朋友可以参考下... 目录一、快速排序原理二、快速排序标准代码三、代码解析四、使用while循环的快速排序1.代码代码1.由快