温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

operator中int()方法如何使用

发布时间:2021-06-23 14:27:51 来源:亿速云 阅读:414 作者:Leah 栏目:互联网科技

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

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

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI