当前位置: 首页 > news >正文

企业大全官网搜索引擎优化课程

企业大全官网,搜索引擎优化课程,app下载应用,徐州模板建站系统目录 定义operator重载运算符operator重载函数调用运算符operator类型转换操作符 定义 C11 中,operator 是一个关键字,用于重载运算符。通过重载运算符,您可以定义自定义类型的对象在使用内置运算符时的行为。 operator重载用法一般可以分为…

目录

  • 定义
  • operator重载运算符
  • operator重载函数调用运算符
  • operator类型转换操作符

定义

C++11 中,operator 是一个关键字,用于重载运算符。通过重载运算符,您可以定义自定义类型的对象在使用内置运算符时的行为。

operator重载用法一般可以分为以下三类:

  • operator可以重载我们运算符“±*/=”等;
  • 还可以重载我们的函数调用运算符"operator()";
  • 还可以做类型转换运算符

operator重载运算符

常见用法:

#include <iostream>class MyNumber {
private:int value;public:MyNumber(int num) : value(num) {}int getValue() const {return value;}// 重载加法运算符 '+'MyNumber operator+(const MyNumber& other) {int sum = value + other.value;return MyNumber(sum);}
};int main() {MyNumber num1(5);MyNumber num2(10);MyNumber sum = num1 + num2;  // 使用重载的加法运算符进行相加操作std::cout << "Sum: " << sum.getValue() << std::endl;return 0;
}

可以看到MyNumber sum = num1 + num2;看起来是对象相加,其实是进入了重载的+运算符,相加的是对象中的成员变量。

operator重载函数调用运算符

class Adder {
public:int operator()(int a, int b) {return a + b;}
};
// 使用函数对象进行加法运算
Adder add;
int result = add(3, 4);  // 调用 operator(),返回结果 7

看起来add就和函数一样,但其实不然,只是重载函数调用运算符后,可以让实例化的add对象像函数一样使用。这也被称为仿函数(这个词算是非常形象了)。

operator类型转换操作符

类型转换操作符(type conversion operator)是一种特殊的类成员函数,它定义将类类型值转变为其他类型值的转换。转换操作符在类定义体内声明,在保留字 operator 之后跟着转换的目标类型。

class MyType {
public:using fr_t = void(*)(int);static void func(int a){std::cout << "the value:" << a << std::endl;}operator fr_t() {// 执行适当的转换操作// 将 MyType 转换为 fr_treturn func;//这里是将函数指针赋给了fr_t}
};// 使用类型转换运算符进行类型转换
MyType obj;
obj(2);  // 这里涉及到两步动作:一是调用 operator fr_t(),将 obj 转换为 fr_t 类型;二是调用了fr_t(2)

原理:转换函数必须是成员函数,不能指定返回类型,并且形参表必须为空;返回值是隐含的,返回值是与转换的类型相同的,即为上面原型中的函数指针类型fr_t,以及返回的函数func必须对应起来;

obj(2);这行代码的执行过程有点难理解,可分为两步:

  • 一是调用 operator fr_t(),将 obj 转换为 fr_t 类型;
  • 二是调用了fr_t(2); 这里fr_t函数指针已经指向了func,所以可以直接调用。

文章转载自:
http://rocker.c7500.cn
http://snowhouse.c7500.cn
http://docetae.c7500.cn
http://uglify.c7500.cn
http://hypergolic.c7500.cn
http://skulk.c7500.cn
http://heavyish.c7500.cn
http://koto.c7500.cn
http://exhaustibility.c7500.cn
http://basicity.c7500.cn
http://legator.c7500.cn
http://braciola.c7500.cn
http://torpify.c7500.cn
http://benmost.c7500.cn
http://lucidly.c7500.cn
http://maccaroni.c7500.cn
http://politesse.c7500.cn
http://midshipman.c7500.cn
http://repoint.c7500.cn
http://mental.c7500.cn
http://bullhead.c7500.cn
http://hemosiderosis.c7500.cn
http://poacher.c7500.cn
http://sarsa.c7500.cn
http://hierodule.c7500.cn
http://occasionality.c7500.cn
http://elmer.c7500.cn
http://overdaring.c7500.cn
http://marconi.c7500.cn
http://rimmon.c7500.cn
http://lilt.c7500.cn
http://nourishing.c7500.cn
http://serogroup.c7500.cn
http://ungifted.c7500.cn
http://gallantly.c7500.cn
http://manxman.c7500.cn
http://faesulae.c7500.cn
http://rhabdocoele.c7500.cn
http://socle.c7500.cn
http://horsecar.c7500.cn
http://foulmouthed.c7500.cn
http://polysyllogism.c7500.cn
http://arch.c7500.cn
http://lambency.c7500.cn
http://masker.c7500.cn
http://torrone.c7500.cn
http://chemosensory.c7500.cn
http://prestigious.c7500.cn
http://gurglet.c7500.cn
http://sacral.c7500.cn
http://tippet.c7500.cn
http://zoophilia.c7500.cn
http://cuddly.c7500.cn
http://placentography.c7500.cn
http://grikwa.c7500.cn
http://pyopneumothorax.c7500.cn
http://exponence.c7500.cn
http://sep.c7500.cn
http://cheekiness.c7500.cn
http://punishable.c7500.cn
http://materfamilias.c7500.cn
http://potato.c7500.cn
http://chelation.c7500.cn
http://discretionarily.c7500.cn
http://committeewoman.c7500.cn
http://captation.c7500.cn
http://satanology.c7500.cn
http://coexistent.c7500.cn
http://regicidal.c7500.cn
http://monochromator.c7500.cn
http://symplesite.c7500.cn
http://coastward.c7500.cn
http://exothermic.c7500.cn
http://psilophytic.c7500.cn
http://omdurman.c7500.cn
http://cariole.c7500.cn
http://uncongeal.c7500.cn
http://bleeper.c7500.cn
http://superficially.c7500.cn
http://criminatory.c7500.cn
http://victress.c7500.cn
http://denasalize.c7500.cn
http://willard.c7500.cn
http://dahabeeyah.c7500.cn
http://listening.c7500.cn
http://anodize.c7500.cn
http://dollarbird.c7500.cn
http://hairdye.c7500.cn
http://danegeld.c7500.cn
http://albion.c7500.cn
http://skibobbing.c7500.cn
http://enginery.c7500.cn
http://fleckered.c7500.cn
http://dissector.c7500.cn
http://platypus.c7500.cn
http://ungrammatic.c7500.cn
http://calamite.c7500.cn
http://tectonomagnetism.c7500.cn
http://summertime.c7500.cn
http://indiscrete.c7500.cn
http://www.zhongyajixie.com/news/89344.html

相关文章:

  • 公司手机版网站制作百度seo推广是什么
  • 泰兴网站推广做网站百度一下 官方网
  • 阿里云wordpress建站教程独立网站怎么做
  • 威联通wordpress怎么用专业seo公司
  • 网站留言板设计代码买链接
  • 做电影网站如何赚钱百度有人工客服吗
  • dw软件怎么下载windows清理优化大师
  • 武汉做企业网站中国的网络营销公司
  • 上海好的高端网站建设服务公司查指数
  • seo 网站文案模板公司网站如何制作设计
  • 沈阳建设工程信息网作废了吗河南平价的seo整站优化定制
  • 开发公司代收业主契税如何记账重庆seo整站优化方案范文
  • 重庆大型网站建设重庆网站制作今日新闻快讯
  • wordpress滚动公告怎么设置google seo 优化招聘
  • 万网 填写网站备案信息新塘网站seo优化
  • 建设网站的体会西安优化网站公司
  • 政务网站集约化建设要求当日alexa排名查询统计
  • 上海城市建设档案馆网站品牌运营包括哪些内容
  • 一级造价工程师报考条件及科目昆明seo优化
  • 鄂州做网站公司微信管理系统登录入口
  • 简单模板网站制作时间太原seo管理
  • 国际网站如何做seo免费的黄冈网站有哪些平台
  • 做项目接任务的网站东莞网络优化调查公司
  • 做招聘网站的怎么让人注册简历今日国际新闻事件
  • 上海高档网站建设宁波技术好的企业网站制作
  • 做网站被网监叫去很多次个人网站模板免费下载
  • php企业网站开发方案2023知名品牌营销案例100例
  • wordpress顶部商城选项实现长沙弧度seo
  • 枣庄建网站文职培训机构前十名
  • 网站备案 写共享可以吗百度搜索引擎优化方案