资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

C++中为什么不要进行不受限制的非成员函数调用

本篇内容介绍了“C++中为什么不要进行不受限制的非成员函数调用”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

曲江网站建设公司创新互联,曲江网站设计制作,有大型网站制作公司丰富经验。已为曲江上1000家提供企业网站建设服务。企业网站搭建\成都外贸网站建设公司要多少钱,请找那个售后服务好的曲江做网站的公司定做!

T.69:在模板内部,不要进行不受限制的非成员函数调用,除非你希望它成为一个定制点

Reason(原因)

  • Provide only intended flexibility.

    只按意图提供弹性。

  • Avoid vulnerability to accidental environmental changes.

    避免偶然的环境变化时的脆弱性。

Example(示例)

There are three major ways to let calling code customize a template.

存在三种主要的方式让调用代码定制模板。

template
   // Call a member function
void test1(T t)
{
   t.f();    // require T to provide f()
}

template
void test2(T t)
   // Call a non-member function without qualification
{
   f(t);  // require f(/*T*/) be available in caller's scope or in T's namespace
}

template
void test3(T t)
   // Invoke a "trait"
{
   test_traits::f(t); // require customizing test_traits<>
                         // to get non-default functions/types
}

A trait is usually a type alias to compute a type, a constexpr function to compute a value, or a traditional traits template to be specialized on the user's type.

特征通常是一种用于计算类型的类型别名,一种用于求值的常量表达式函数,或者用于针对某个用户类型特化的传统的特征模板。

Note(注意)

If you intend to call your own helper function helper(t) with a value t that depends on a template type parameter, put it in a ::detail namespace and qualify the call as detail::helper(t);. An unqualified call becomes a customization point where any function helper in the namespace of t's type can be invoked; this can cause problems like unintentionally invoking unconstrained function templates.

如果你想用依赖模板类型参数的值t调用你自己的帮助函数helper(t),将它放入::detail命名空间并用detail::helper(t)对调用进行限定;如果一个帮助函数处于t的类型可以被触发的命名空间,不受限的调用会成为一个定制点;这会引起意外调用非约束函数模板等问题。

Enforcement(实施建议)

在模板同一个命名空间中,如果存在一个同名非成员函数,标记模板中针对传递受影响类型变量的非成员函数的不受限调

“C++中为什么不要进行不受限制的非成员函数调用”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注创新互联网站,小编将为大家输出更多高质量的实用文章!


文章标题:C++中为什么不要进行不受限制的非成员函数调用
转载注明:http://cdkjz.cn/article/pcsios.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

业务热线:400-028-6601 / 大客户专线   成都:13518219792   座机:028-86922220