函数模板和模板函数有什么区别?
函数模板和模板函数有什么区别?
What is the difference between function template and template function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
函数模板和模板函数有什么区别?
What is the difference between function template and template function?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
来自此常见问题解答 (存档)
From this FAQ (archive)
函数模板是正确的术语(用于实例化函数的模板)。
模板函数是一个通俗的同义词。
所以,没有任何区别。
Function Template is the correct terminology (a template to instantiate functions from).
Template Function is a colloquial synonym.
So, there's no difference whatsoever.
编译器根据函数模板(泛型函数)针对指定数据类型生成的函数称为模板函数。
例子:
下面的代码称为函数模板,因为它是函数的模板。
当我们编译这段代码时,编译器将通过引用模板函数来编写一个 int 函数。 该函数称为模板函数。
The function generated by the compiler from function template(generic function) for specified data type is known as template function.
Example:
The below code is called function template as it is template for a function.
When we compile this code compiler will write a function for int by taking reference from template function. That function is known as template function.