RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
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://scyingshan.cn/article/pjocpo.html