C++基础知识 - 重载类型运算符

这篇博客介绍了如何在C++中进行类类型与普通类型的转换,包括通过构造函数和类型转换函数。示例展示了如何创建构造函数以实现薪资和姓名的构造,以及如何定义类型转换函数将类类型转换为整型和字符串。同时,还展示了如何从一个类类型(Boy)转换到另一个类类型(Man)的过程。
摘要由CSDN通过智能技术生成

1. 普通类型 => 类类型

  • 调用对应的只有一个参数【参数的类型就是这个普通类型】的构造函数
  • 需求:
    Boy boy1 = 10000; // 薪资 构造函数Boy(int);
    Boy boy2 = “张三” // 姓名 构造函数Boy(string);

Boy.h

#pragma once
#include <string>
#include <iostream> 
using namespace std;

class Boy{
   
public:
	Boy(const string name = "无名", int age = 0, int salary = 0);
	
	//boy1 = 10000就会调用该构造函数;
	Boy(int salary);

	//boy1 = "张三" 就会调用该构造函数;
	Boy(const char* name);

	friend ostream& operator<<(ostream& os, const Boy& boy);
private: 
	string name;//姓名
	int age;	//年龄
	int salary;	//薪资
};

Boy.cpp

#include <iostream>
#include <sstream>
#include "Boy.h"

Boy::Boy(const string name, int age, int salary){
   
    this->name = name;
    this->age = age;
    this->salary = salary;
}

Boy::Boy(int salary){
   
    this->salary = salary;
    this->age = 0;
    this->name = "无名";
}

Boy::Boy(const char* name){
   
    this->name = name;
    this->salary = 0;
    this->age = 0;
}

main.cpp

#include <iostream>
#include <Windows.h>
#include "Boy.h"
using namespace std;

ostream
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值