本文介绍了回答我的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
此指针与操作者重载之间的区别是什么?
What is the diffrence between this pointer and oprator overloading?
推荐答案
int i = 5;
int j = 6;
int k = i + j;
string i = "five ";
string j = "six ";
string k = i + j;
this
和运算符重载"这两个概念是不可比较的,因为它们没有共同之处.
The two concepts: this
and "operator overloading" are not comparable because they have nothing in common.
这篇关于回答我的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!