c語言指針++
Program 1:
程序1:
#include <iostream>
using namespace std;
class Test {
int VAL;
public:
Test(int v)
{
VAL = v;
}
Test* Sum(Test T1, Test T2)
{
VAL = T1.VAL + T2.VAL;
return this;
}
void print()
{
cout << VAL << " ";
}
};
int main()
{
Test T1(10);
Test T2(20);
Test* T3;
T3 = T1.Sum(T1, T2);
T1.print();
T2.print();
T3->print();
return 0;
}
Output:
輸出:
30 20 30
Explanation:
說明:
Consider the sum() function, the function is taking two objects of Test class arguments and returning the pointer of the current object using this.?
考慮sum()函數,該函數接收Test類參數的兩個對象,并使用this返回當前對象的指針。
And, in the main() function, we created two objects T1, T2, and a pointer T3, which is holding the current object pointer returned by sum(). The sum() is adding the values of T1 and T2 and assigning in T1 because we are calling the function sum() using T1 and returning the address of T1 which is assigning to the pointer T3.
并且,在main()函數中,我們創建了兩個對象T1 , T2和一個指針T3 ,該指針保存了sum()返回的當前對象指針。 sum()將T1和T2的值相加并在T1中賦值,因為我們正在使用T1調用函數sum()并返回分配給指針T3的T1地址。
Program 2:
程式2:
#include <iostream>
using namespace std;
class Test {
public:
Test call1()
{
cout << "call1 ";
return *this;
}
Test call2()
{
cout << "call2 ";
return *this;
}
Test call3()
{
cout << "call3 ";
return *this;
}
};
int main()
{
Test T1;
T1.call1().call2().call3();
return 0;
}
Output:
輸出:
call1 call2 call3
Explanation:
說明:
Here, we implemented a cascaded function call using this pointer, and created the class Test with 3 member functions call1(), call2(), and call3(). All these functions will return the current object of the class using *this.
在這里,我們使用此指針實現了級聯函數調用,并使用3個成員函數 call1() , call2()和call3()創建了Test類。 所有這些函數都將使用* this返回類的當前對象。
翻譯自: https://www.includehelp.com/cpp-tutorial/this-pointer-find-output-programs-set-3.aspx
c語言指針++