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

重载运算符

时间:2018-11-04 19:37:30      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:++   include   style   printf   ace   tor   div   class   print   

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 int n,m,s;
 4 struct edge{
 5     int x, y, val;
 6     bool operator < (const edge &tx) const{
 7         return val < tx.val;
 8     }
 9 };
10 int main()
11 {
12     edge a, b;
13     a.val = 1;
14     b.val = 2;
15     printf("%d ", b<a);
16 }

 

重载运算符

标签:++   include   style   printf   ace   tor   div   class   print   

原文地址:https://www.cnblogs.com/lizinuo/p/9904447.html

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