MOOC清华《面向对象程序设计》第2章:函数重载实验

实验一:(转载自学堂在线《面向对象程序设计(C++)》,注释主要是我加的)

#include <iostream>  
using namespace std;    
/*
void print(char* msg){ //<1>
	cout << "message: " << msg << endl;
}
*/
//当主调函数中print()的实参为字符串时,会出现
//deprecated conversion from string constant to 'char*'
//(不赞成从字符串常量到字符指针的转换)的报错 

void print(char msg){ //<1>,去掉星号*就能得到正确答案,否则实参字符作整数处理 
	cout << "message: " << msg << endl;
}

void print(int score){ //<2>
	cout << "score = " << score << endl;
}
 
int main(){  
    //print("Hello"); //调用<1>处函数,DevCpp不支持
	print('L'); //调用<1>处函数 
	print(94); //调用<2>处函数 
    return 0;  
}  



实验二:

#include <iostream>  
using namespace std;    

void test(int a, int b){
	cout << "执行函数<1>:" << a + b << endl;
}

void test(int a, char b){
	if(b >= 65 && b <= 90)
		b = b + 32;
	cout << "执行函数<2>: " << a << b << endl;
}
 
int main(){  
    test(9, 8);
    test(10, 'A');
    return 0;  
}  


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值