const 返回类型何时会干扰模板实例化?
来自 Herb Sutter 的 GotW #6
对于非内置返回类型,按值返回通常应为 const。 ...
注意:Lakos(第 618 页)反对返回 const 值, 并指出无论如何它对于内置函数来说都是多余的 (例如,返回“const int”),他指出这可能 干扰模板实例化。
虽然 Sutter 似乎对 Lakos 按值返回非内置类型的对象时是否返回 const 值或非常量值存在分歧,但他总体上同意返回内置类型的 const 值(例如 const int )不是一个好主意。
虽然我理解为什么这是无用的,因为返回值无法修改,因为它是右值,但我找不到这可能如何干扰模板实例化的示例。
请举例说明返回类型的 const 限定符可能会如何干扰模板实例化。
From Herb Sutter's GotW #6
Return-by-value should normally be const for non-builtin return types. ...
Note: Lakos (pg. 618) argues against returning const value,
and notes that it is redundant for builtins anyway
(for example, returning "const int"), which he notes may
interfere with template instantiation.
While Sutter seems to disagree on whether to return a const value or non-const value when returning an object of a non-built type by value with Lakos, he generally agrees that returning a const value of a built-in type (e.g const int) is not a good idea.
While I understand why that is useless because the return value cannot be modified as it is an rvalue, I cannot find an example of how that might interfere with template instantiation.
Please give me an example of how having a const qualifier for a return type might interfere with template instantiation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面是一个涉及函数指针的简单示例:
请注意,Visual C++ 2010 错误地接受两者。 Comeau 4.3.10 和 g++ 4.1.2 正确地不接受
g(&f_const)
调用。Here's a simple example involving function pointers:
Note that Visual C++ 2010 incorrectly accepts both. Comeau 4.3.10 and g++ 4.1.2 correctly do not accept the
g(&f_const)
call.