C++11中vector的emplace_back用法及输入输出操作符的重载

#include 
#include 
#include 
using namespace std;

struct A{
    int x;
    double y;
    string z;

    A(int _x=0,double _y=0,string _z=""):x(_x),y(_y),z(_z){}
    A(const A &t):x(t.x),y(t.y),z(t.z){}//copy constructor
    friend ostream & operator<<(ostream &out, A &obj){
        out<<"x:"<

吐槽CSDN的标题字符限制,<<和>>不能作为标题内容,不然就提示输入有误。气哭。

你可能感兴趣的:(C++,C++11)