sqrt函数使用(重载函数调用)

Posted qq1480040000

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sqrt函数使用(重载函数调用)相关的知识,希望对你有一定的参考价值。

/*
time:2020年4月16日21:01:50
where:gfdx
function:重载函数调用---sqrt函数使用*/
#include<iostream>
#include<cmath>
using namespace std;
//重载1
float sroot(float a)
{
	return sqrt(a);
}
//重载2
int sroot(int a)
{
	return sqrt(a);
}
//重载3
double sroot(double a)
{
	return sqrt(a);
}
int main() {
	int a;
	cin >>a;
	cout <<sqrt(a) << endl;//输出重载函数
	return 0;
}

  

以上是关于sqrt函数使用(重载函数调用)的主要内容,如果未能解决你的问题,请参考以下文章

对重载函数的调用不明确sqrt的解决方案

C++ 编译器错误:对重载函数的模糊调用

Java基础之方法的调用重载以及简单的递归

函数重载,数组,一些算法

内联函数和函数重载

为啥这些重载的函数调用模棱两可?