C++_运算符重载

博客以复数类为例介绍相关内容,虽博主自称学艺不精,但围绕C++基础展开,为学习C++基础提供了一个具体示例。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

存几个自用的重载板子a'w'a

以一个复数类为例

#include <bits/stdc++.h>
#define selcal(a) this->dig_real = this->dig_real a temp.dig_real , this->dig_virt = this->dig_virt a temp.dig_virt ;
	
using namespace std ;

class Complex
{
	public :
		Complex( const int real=0 , const int virt=0 ){
			dig_real = real , dig_virt = virt ; vis=cont++;
			//printf("%c plural be Maaaaaked~\n",vis);
		}
		~Complex(){
			//printf("A plural has GUuuuunned~%c\n",vis);
		}
		void show()const{
			printf( dig_virt ? "< %d + %di >\n":"< %d >\n",dig_real , dig_virt );
		}//--------------------------------------------//
		Complex operator+ ( int x ) ;//复数加常数
		Complex operator- ( int x ) ;//
		Complex operator* (  Complex & ) ;//
		Complex operator/ (  Complex & ) ;//
		Complex operator+=( const Complex & ) ;//
		Complex operator-=(  Complex & ) ;//
		Complex& operator*=( const Complex & ) ;//
		Complex& operator/=( const Complex & ) ;//
		
		Complex operator++();//两种形式 
		Complex operator++( int x );
		Complex& operator -();//前置复数取反
		Complex& operator ~();//前置取共轭
		
		Complex operator+ (  const Complex & )const ;//
		Complex operator- (  const Complex & )const ;//
		friend Complex operator--( Complex& ) ;
    	friend Complex operator--( Complex& , int ) ;
    	friend Complex operator+ ( const int , const Complex & ) ;//常数加复数 
    	friend Complex operator- ( const int , const Complex & ) ;//

    	//friend Complex&	operator/ ( int , const Complex & ) ;
    	//--------------------------------------------//
	private :
		int dig_real ;
		int dig_virt ;
		char vis ;
		static int cont ;
		friend istream& operator>> ( istream & ,  Complex & ) ;//
		friend ostream& operator<< ( ostream & , const Complex & ) ; //
};
int Complex::cont = 'a' ;
//---------------------------------------------------------//
Complex Complex:: operator+ ( int x )
{	return Complex((dig_real^x)+((dig_real&x)<<1), dig_virt) ; }

Complex Complex:: operator+ ( const Complex &temp )const
{	return Complex( (dig_real^temp.dig_real)+((dig_real&temp.dig_real)<<1) , (dig_virt^temp.dig_virt)+((dig_virt&temp.dig_virt)<<1)) ; }

Complex operator+ ( const int x  , const Complex &temp )
{	Complex Ccc(temp) ; return Ccc + x; }  

Complex Complex::operator - ( int x )
{	return Complex(this->dig_real-x,this->dig_virt) ; }

Complex Complex:: operator- ( const Complex &temp )const
{	return Complex( dig_real - temp.dig_real, dig_virt - temp.dig_virt); }

Complex operator- ( const int x  , const Complex &temp )
{	Complex Ccc(temp) ; return -Ccc+x; }  

Complex Complex:: operator* ( Complex &temp )
{	return Complex( dig_real*temp.dig_real-(dig_virt*temp.dig_virt) ,dig_virt*temp.dig_real+dig_real*temp.dig_virt); }

Complex Complex:: operator/ ( Complex &temp )
{	return Complex( (dig_real*temp.dig_real + dig_virt*temp.dig_virt) / (temp.dig_real*temp.dig_real + temp.dig_virt*temp.dig_virt) , (dig_virt*temp.dig_real - dig_real*temp.dig_virt) / (temp.dig_real*temp.dig_real + temp.dig_virt*temp.dig_virt) ); }

Complex Complex:: operator+=( const Complex &temp )
{	selcal(+) return *this ; }

Complex Complex:: operator-=( Complex &temp )
{	selcal(-) return *this ; }

Complex& Complex:: operator*=( const Complex &temp )
{
	Complex ccc(*this);
	int medi = dig_real;
	ccc.dig_real = ccc.dig_real*temp.dig_real - ccc.dig_virt*temp.dig_virt ,
	ccc.dig_virt = ccc.dig_virt*temp.dig_real + medi*temp.dig_virt;
	dig_real=ccc.dig_real , dig_virt=ccc.dig_virt;
	return *this;
}

Complex& Complex:: operator/=( const Complex &temp )
{
	Complex ccc(*this);
	ccc.dig_real = ((this->dig_real * temp.dig_real) + (this->dig_virt * temp.dig_virt)) / ((temp.dig_real * temp.dig_real) + (temp.dig_virt * temp.dig_virt));
	ccc.dig_virt = ((this->dig_virt * temp.dig_real) - (this->dig_real * temp.dig_virt)) / ((temp.dig_real * temp.dig_real) + (temp.dig_virt * temp.dig_virt));
	dig_real = ccc.dig_real , dig_virt = ccc.dig_virt ;
	return *this ;
	//return ccc;
}

Complex Complex::  operator++()
{	++dig_real ; return *this ; }

Complex Complex::  operator++( int x)
{	Complex temp(*this) ; ++dig_real ; return temp ; }

Complex operator--( Complex &temp ) 
{	--temp.dig_real ; return temp; }

Complex operator--( Complex &temp , int x ) 
{	Complex ccc(temp) ; --temp.dig_real ; return ccc ;}

Complex& Complex:: operator -()
{	this->dig_real = 0-this->dig_real , this->dig_virt = 0-dig_virt ; return *this ; }

Complex& Complex:: operator ~()
{	this->dig_virt = 0-dig_virt ; return *this ; }

istream& operator>>(istream &os,  Complex &temp )
{	os >> temp.dig_real >> temp.dig_virt;	return os; }

ostream& operator<<(ostream &os, const Complex &temp)
{	os.unsetf(std::ios::showpos);os << "<" << temp.dig_real ; os.setf(std::ios::showpos); os << temp.dig_virt<< "i>"<<endl; return os; }

int main()
{
	Complex c1( 1 , 2 ) ,c2( 2 , 4 ) , c3( 10 , 11 ),c4( 4 , 8 );
	Complex cc[20] ;
	//printf("::");
	cc[0]=c1+2 ;	printf(" 1+2i + 2 = ") ; 		cout<<cc[0] ;
	cc[1]=c1+c2; 	printf(" 1+2i + 2+4i = ") ; 	cout<<cc[1] ;
	cc[2]=c3-3 ;    printf(" 10+11i - 3 = ") ;      cout<<cc[2] ;
	cc[3]=c3-c2;    printf(" 10+11i - 2+4i = ");    cout<<cc[3] ;
	cc[4]=c3*c2;    printf(" 10+11i * 2+4i = ");    cout<<cc[4] ;
	cc[5]=c4/c2;    printf(" 4+8i / 2+4i = ");      cout<<cc[5] ;
	c1+=c2 ;  		printf(" c1+=c2:") ;			cout<<c1 ;
	c1-=c2 ;		printf(" c1-=c2:") ;			cout<<c1 ;
	c1*=c2 ;		printf(" c1*=c2:") ;			cout<<c1 ;
	c1/=c2 ;		printf(" c1/=c2:") ;			cout<<c1;
	cc[6]=3+c2 ;	printf(" 3 + 2+4i = ") ;		cout<<cc[6] ;
	cc[7]=3-c2 ;	printf(" 3 - 2+4i = ") ;		cout<<cc[7] ;
	cc[8]=++c4 ;	printf(" ++c4 = ") ;			cout<<cc[8]	;
	cc[9]=c4++ ;	printf(" c4++ = ") ;			cout<<cc[9]	;
	cout<<"Now c4 is"<<c4 ;
	cc[10]=--c4 ;	printf(" --c4 = ") ;			cout<<cc[10] ;
	cc[11]=c4-- ;	printf(" c4-- = ") ;			cout<<cc[11] ;
	cc[19]=-c4;		printf(" -c4= ") ;              cout<<cc[19] ;
	cc[18]=~c4;     printf(" ~-c4= ") ;             cout<<cc[18] ;

	cout<<"CC[17] is"<<cc[17];	
	cin>>cc[17] ;
	cout<<"Now CC[17] is"<<cc[17];	
	
}

学艺不精告辞
学艺不精,告辞!

电动汽车数据集:2025年3K+记录 真实电动汽车数据:特斯拉、宝马、日产车型,含2025年电池规格和销售数据 关于数据集 电动汽车数据集 这个合成数据集包含许多品牌和年份的电动汽车和插电式车型的记录,捕捉技术规格、性能、定价、制造来源、销售和安全相关属性。每一行代表由vehicle_ID标识的唯一车辆列表。 关键特性 覆盖范围:全球制造商和车型组合,包括纯电动汽车和插电式混合动力汽车。 范围:电池化学成分、容量、续航里程、充电标准和速度、价格、产地、自主水平、排放、安全等级、销售和保修。 时间跨度:模型跨度多年(包括传统和即将推出的)。 数据质量说明: 某些行可能缺少某些字段(空白)。 几个分类字段包含不同的、特定于供应商的值(例如,Charging_Type、Battery_Type)。 各列中的单位混合在一起;注意kWh、km、hr、USD、g/km和额定值。 列 列类型描述示例 Vehicle_ID整数每个车辆记录的唯一标识符。1 制造商分类汽车品牌或OEM。特斯拉 型号类别特定型号名称/变体。型号Y 与记录关联的年份整数模型。2024 电池_类型分类使用的电池化学/技术。磷酸铁锂 Battery_Capacity_kWh浮充电池标称容量,单位为千瓦时。75.0 Range_km整数表示充满电后的行驶里程(公里)。505 充电类型主要充电接口或功能。CCS、NACS、CHAdeMO、DCFC、V2G、V2H、V2L Charge_Time_hr浮动充电的大致时间(小时),上下文因充电方法而异。7.5 价格_USD浮动参考车辆价格(美元).85000.00 颜色类别主要外观颜色或饰面。午夜黑 制造国_制造类别车辆制造/组装的国家。美国 Autonomous_Level浮点自动化能力级别(例如0-5),可能包括子级别的小
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值