网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

C+为什么避免定义没有明确语义的概念

本篇内容介绍了“C+为什么避免定义没有明确语义的概念”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

逊克ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为成都创新互联公司的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:028-86922220(备注:SSL证书合作)期待与您的合作!

T.20:避免定义没有明确语义的“概念”

Reason(原因)

Concepts are meant to express semantic notions, such as "a number", "a range" of elements, and "totally ordered." Simple constraints, such as "has a + operator" and "has a > operator" cannot be meaningfully specified in isolation and should be used only as building blocks for meaningful concepts, rather than in user code.

概念意在表现某种有语义的观念,例如“数字”,元素的“范围”,和“完全有序”等。简单的约束,例如有+运算符,有>运算符不能算作被独立,明确地定义,只应用于某个明确概念的组成部分,而不是在代码中直接使用。

Example, bad (using TS concepts)

反面示例(使用TS概念)

template
concept Addable = has_plus;    // bad; insufficient

template auto algo(const N& a, const N& b) // use two numbers
{
   // ...
   return a + b;
}

int x = 7;
int y = 9;
auto z = algo(x, y);   // z = 16

string xx = "7";
string yy = "9";
auto zz = algo(xx, yy);   // zz = "79"

Maybe the concatenation was expected. More likely, it was an accident. Defining minus equivalently would give dramatically different sets of accepted types. This Addable violates the mathematical rule that addition is supposed to be commutative: a+b == b+a.

也许期待的操作就是连结。更有可能的是,这只是一个意外。对等地定义减操作将会提供一套明显不同的可接受类型。这个可加性违反了加法运算满足交换律(a+b==b+a)这个规则。

Note(注意)

The ability to specify a meaningful semantics is a defining characteristic of a true concept, as opposed to a syntactic constraint.

定义明确语义的能力是真正的概念所具备的明确特征,而不是句法约束。

Example (using TS concepts)

示例(使用TS概念)

template
// The operators +, -, *, and / for a number are assumed to follow the usual mathematical rules
concept Number = has_plus
                && has_minus
                && has_multiply
                && has_divide;

template auto algo(const N& a, const N& b)
{
   // ...
   return a + b;
}

int x = 7;
int y = 9;
auto z = algo(x, y);   // z = 16

string xx = "7";
string yy = "9";
auto zz = algo(xx, yy);   // error: string is not a Number
Note(注意)

Concepts with multiple operations have far lower chance of accidentally matching a type than a single-operation concept.

相比只有一个操作的概念,包含多个操作的概念偶然和某个类型匹配的可能性会大为降低。

Enforcement(实施建议)

  • Flag single-operation concepts when used outside the definition of other concepts.

  • 标记处于其他概念定义范围之外的单操作概念。

  • Flag uses of enable_if that appears to simulate single-operation concepts.

  • 标记将enable_if用于模拟单操作概念的情况。

“C+为什么避免定义没有明确语义的概念”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注创新互联网站,小编将为大家输出更多高质量的实用文章!


新闻名称:C+为什么避免定义没有明确语义的概念
标题路径:http://bjjierui.cn/article/pejeoe.html

其他资讯