uniapp开发app框架在提升开发效率中的独特优势与应用探索
550
2022-11-26
d使用d1的重载操作符
原文
上个月发布的2.100版本语言已完全删除旧重载符号.但是,使用D出色的元编程功能,可以编写插件模板,来让D1风格重载符号继续工作.
对比D1与D2重载符号
重载符号用来自定义(如+和-)操作符.在D1中,是用普通命名函数,如加法opAdd或乘法opMul.示例,用整来表示内部状态的结构类型:
struct S { int x; S opAdd(S other) { return S(x + other.x); } S opSub(S other) { return S(x - other.x); } S opMul(S other) { return S(x * other.x); } S opDiv(S other) { assert(other.x != 0, "除零!"); return S(x / other.x); }//后面简称为`四块代码`.}void main() {//后面简写为`主块代码` S s1 = S(6); S s2 = S(3); assert(s1 + s2 == S( 9)); assert(s1 - s2 == S( 3)); assert(s1 * s2 == S(18)); assert(s1 / s2 == S( 2)); assert( s1 % s2 == S( 0)); assert((s1 | s2) == S( 7)); //...}
太多重复代码.D2改进了.
struct S { int x; S opBinary(string op)(S other) { static if(op == "/" || op == "%") assert(other.x != 0, "除零!"); return mixin("S(x ", op, " other.x)"); } }主块代码;
注意,仅有一个函数(除法符号略有不同),且处理所有数学运算!代码更容易编写,更不容易出错,也更简洁.
别名符号
struct S { int x; 四块代码; alias opBinary(op : "+") = opAdd; alias opBinary(op : "-") = opSub; alias opBinary(op : "*") = opMul; alias opBinary(op : "/") = opDiv;//别名符号.}
注意,在此使用了D元编程很酷的特性.别名是同名模板,特化了模板参数,并用模板约束过滤.
插件模板
mixin template D1Ops() { static if(__traits(hasMember, typeof(this), "opAdd")) alias opBinary(op : "+") = opAdd;//当有`opadd`时,别名此函数为左边.}
struct S { int x; 四块代码; mixin D1Ops;}
使用别名,可处理现有重载符号问题.再借助静每一扩展.
mixin template D1Ops() { static foreach(op, d1; ["+" : "opAdd", "-" : "opSub", "*" : "opMul", "/" : "opDiv","%" : "opMod"]) {//static foreach编译时迭代普通运行时迭代元素. static if(__traits(hasMember, typeof(this), d1)) alias opBinary(string s : op) = mixin(d1);//对每一个操作. }}
必须别名opBinary至符号.而不是串,因而用mixin(d1).这是相对新的功能.旧版要用mixin在整个别名语句.最新的,相对就好看多了.最终代码:
mixin template D1Ops() { static foreach(op, d1; ["+" : "opAdd", "-" : "opSub", "*" : "opMul", "/" : "opDiv","%" : "opMod"]) { static if(__traits(hasMember, typeof(this), d1)) alias opBinary(string s : op) = mixin(d1); }}struct S { int x; 四块代码; mixin D1Ops;}主块代码;
opMod不在类中.其他D1风格符号 可,另加循环来处理opUnary/opBinaryRight, 还可嵌套映射,或按映射部分,来包含要别名的模板名.opBinaryRight和opBinary,除了在in上外,其余相同.用静每一不易出错.
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~