您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關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()方法如何使用就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。