const 返回类型何时会干扰模板实例化?

发布于 2024-09-03 06:32:42 字数 489 浏览 4 评论 0原文

来自 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

水溶 2024-09-10 06:32:42

下面是一个涉及函数指针的简单示例:

const int f_const(int) { return 42; }
int f(int) { return 42; }

template <typename T>
void g(T(*)(T))
{
    return;
}

int main()
{
    g(&f_const); // doesn't work:  function has type "const int (*)(int)"
    g(&f);       // works: function has type "int (*)(int)"
}

请注意,Visual C++ 2010 错误地接受两者。 Comeau 4.3.10 和 g++ 4.1.2 正确地不接受 g(&f_const) 调用。

Here's a simple example involving function pointers:

const int f_const(int) { return 42; }
int f(int) { return 42; }

template <typename T>
void g(T(*)(T))
{
    return;
}

int main()
{
    g(&f_const); // doesn't work:  function has type "const int (*)(int)"
    g(&f);       // works: function has type "int (*)(int)"
}

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文