重载运算符
Posted lizinuo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了重载运算符相关的知识,希望对你有一定的参考价值。
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 }
以上是关于重载运算符的主要内容,如果未能解决你的问题,请参考以下文章