资讯

精准传达 • 有效沟通

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

operator中int()方法如何使用

这篇文章将为大家详细讲解有关operator中int()方法如何使用,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。

成都创新互联公司主要从事网站建设、成都网站设计、网页设计、企业做网站、公司建网站等业务。立足成都服务南票,10年网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:18982081108

operator int() 是类型转换运算符,比如:

struct A
{
int a;
A(int i):a(i){}    
operator int() const { return a; }
};
 
void main()
{
A aa(1);
int i = int(aa);
int j = aa;     //作用一样
}
该函数的返回值类型就是函数名,所以不用显式地表示出。

什么叫返回类型就是函数名?
============================
返回类型是int,函数名也是int,就是说不写成 int operator int() const { return value; },
返回类型被省去了。
operator int() is a conversion operator, which allows this class to be used in place of an int. If an object of this type is used in a place where an int (or other numerical type) is expected, then this code will be used to get a value of the correct type.


For example:

int i(1);
INT I(2); // Initialised with constructor; I.a == 2
 

关于operator中int()方法如何使用就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。


新闻名称:operator中int()方法如何使用
浏览路径:http://cdkjz.cn/article/pjocpo.html
多年建站经验

多一份参考,总有益处

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

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

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