嵌入式c++左移运算符重载
Posted 文某9
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了嵌入式c++左移运算符重载相关的知识,希望对你有一定的参考价值。
语法
class aa
public:
int a,b;
;
//全局函数<<重载
ostream& operator<<(ostream&out,aa &p)
out << "a=" << p.a << "b=" << p.b;
return out;
int main()
aa a1;
a1.a=10;
a1.b=20;
aa a2;
a2.a=10;
a2.b=20;
cout<<a1<<endl;
system("pause");
return 0;
以上是关于嵌入式c++左移运算符重载的主要内容,如果未能解决你的问题,请参考以下文章