我是靠谱客的博主 朴实乐曲,最近开发中收集的这篇文章主要介绍C++ - 函数模板(function template) 的 重载(overload) 详解 及 代码,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

函数模板(function template) 的 重载(overload) 详解 及 代码


本文地址:http://blog.csdn.net/caroline_wendy/article/details/17010031


函数模板(function template)重载, 即实例化特定的模板, 确定T的类型, 选择匹配度最高的一个;

需要注意传递的具体类型, 如传递的是"&s", 则表示"string* t = &s", 即实际匹配的类型为"string* t";

非函数模板函数模板匹配度相同时, 优先选择非函数模板;

调用模板时, 一定要注意顺序, 或者提前声明, 以保证可以找到函数模板, 进行实例化;

具体参见代码注释, 代码如下:

/*
 * cppprimer.cpp
 *
 *  Created on: 2013.11.28
 *      Author: Caroline
 */

/*eclipse cdt, gcc 4.8.1*/

#include <iostream>
#include <sstream>
#include <string>
#include <utility>

using namespace std;

template <typename T>
std::string debug_rep (const T &t)
{
	std::ostringstream ret;
	ret << t;
	return ret.str();
}

template <typename T>
std::string debug_rep (T *p)
{
	std::ostringstream ret;
	ret << "pointer: " << p;
	if (p)
		ret << " " << debug_rep (*p);
	else
		ret << " null pointer";
	return ret.str();
}

/*非模板函数*/
std::string debug_rep (const string &s)
{
	return '"' + s + '"';
}

/*char 重载版本*/
std::string debug_rep (char *p)
{
	std::cout << "plain ";
	return debug_rep (std::string(p));
}

/*const char 重载版本*/
std::string debug_rep (const char *p)
{
	std::cout << "const ";
	return debug_rep (std::string(p)); //调用第一个模板, 注意顺序, 或者前置声明
}

int main (void)
{
	std::string s("hi");
	std::cout << debug_rep (s) << std::endl; //调用第一个 / 优先调用非模板
	//&s, 即 string* s = &s, string* t = const T &t, 即 T->string*
	// string* t = T* t, 即 T->string; 所以选择第二个
	std::cout << debug_rep (&s) << std::endl; //调用第二个
	const std::string *sp = &s;
	std::cout << debug_rep (sp) << std::endl; //调用第二个
	//调用第二个, 只传递首字母; 包含char版本, 右值调用const
	std::cout << debug_rep("hello world") << std::endl;

	return 0;
}


输出:

"hi"
pointer: 0x22fec4 hi
pointer: 0x22fec4 hi
const "hello world"


最后

以上就是朴实乐曲为你收集整理的C++ - 函数模板(function template) 的 重载(overload) 详解 及 代码的全部内容,希望文章能够帮你解决C++ - 函数模板(function template) 的 重载(overload) 详解 及 代码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部