首页 > 代码库 > C++重载加号运算符实现两个结构体的相加
C++重载加号运算符实现两个结构体的相加
#include<iostream> #include<string> using namespace std; struct S { int a, b; string str; S operator+(const S &others) { S s1; s1.a = this->a + others.a; s1.b = this->a + others.a; s1.str += this->str; s1.str += others.str; return s1; } }; int main() { S s1, s2,s3; s1.a = 5; s1.b = 5; s1.str = "Hello, "; s2.a = 6; s2.b = 6; s2.str = "World!"; s3 = s1 + s2; cout << s3.a << endl; cout << s3.b << endl; cout << s3.str << endl; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。