Why can#39;t functions be overloaded by return type?(为什么函数不能被返回类型重载?)
问题描述
可能的重复:
按返回类型重载函数?
谜题:根据返回值重载一个C++函数
因为我有一个库,它以以下形式公开了一堆函数:
Because I have a library which exposes a bunch of functions in the form of:
bool GetVal();
double GetVal();
int GetVal();
long GetVal();
//So on.
现在我必须包装这些.我宁愿不再重写同一组函数.我想做类似的事情
And now I have to wrap these. I'd rather not rewrite the same set of functions again. I'd like to do something like
template<class T>
T GetVal(){}
但我似乎无法让它工作.有什么想法吗?
But I can't seem to get this working. Any ideas?
推荐答案
您不能重载返回类型,因为在函数调用表达式中使用函数的返回值不是强制性的.
You can't overload on return types as it is not mandatory to use the return value of the functions in a function call expression.
例如,我可以说
GetVal();
编译器现在做什么?
这篇关于为什么函数不能被返回类型重载?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么函数不能被返回类型重载?
基础教程推荐
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01