码迷,mamicode.com
首页 > 其他好文 > 详细

初始化函数的简单写法

时间:2018-12-15 19:55:15      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:opera   amp   double   class   str   初始化   初始   div   struct   

struct seg
{
    double l, r, h;
    int flag;
    seg() {}
    seg(double a,double b,double c,int d) : l(a), r(b), h(c), flag(d) {}
    bool operator < (const seg &cmp) const
    {
        return h < cmp.h;
    }
}ss[maxn];

  

初始化函数的简单写法

标签:opera   amp   double   class   str   初始化   初始   div   struct   

原文地址:https://www.cnblogs.com/member-re/p/10124303.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!