博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++语言基础 例程 重载双目运算符
阅读量:6582 次
发布时间:2019-06-24

本文共 1150 字,大约阅读时间需要 3 分钟。

  

String类运算符重载函数

#include
#include
using namespace std;class String{public: String( ){p=NULL;} String(char *str); friend bool operator>(String &s1, String &s2); friend bool operator<(String &s1, String &s2); friend bool operator==(String &s1, String &s2); friend bool operator>=(String &s1, String &s2); friend bool operator<=(String &s1, String &s2); friend bool operator!=(String &s1, String &s2); void display( );private: char *p;};String::String(char *str){ p = new char[strlen(str)+1]; strcpy(p, str);} void String::display( ){ cout << p;} bool operator>(String &s1,String &s2){ if(strcmp(s1.p,s2.p)>0) return true; else return false;} bool operator<(String &s1,String &s2){ if(strcmp(s1.p,s2.p)<0) return true; else return false;} bool operator==(String &s1,String &s2){ return !((s1>s2)||(s1
=(String &s1,String &s2){ return !(s1
s2);} bool operator!=(String &s1,String &s2){ return ((s1>s2)||(s1
s2) { s1.display( ); cout<<" > "; s2.display( ); } else if(s1

转载地址:http://sjsno.baihongyu.com/

你可能感兴趣的文章
css布局
查看>>
HBase-java api 基本操作
查看>>
POJ2229 Sumsets
查看>>
在LINQ-TO-SQL中实现“级联删除”的方法
查看>>
lemur run PLSA
查看>>
HTTP中的header头解析说明
查看>>
MVC3.0原理学习及总结
查看>>
删除windows中的库、家庭组、收藏夹
查看>>
war 宽度变窄
查看>>
set p4 environment in windows
查看>>
pl/sql development 查询的数据复制到excel
查看>>
自定义指令的参数
查看>>
python实现进度条
查看>>
Android 一个应用启动另一个应用的说明
查看>>
阿里云CentOS7服务器利用LVM分区挂载磁盘全记录
查看>>
Setting up the Web Admin Tool in LDAP 6.x to communicate via SSL
查看>>
SQL好习惯:编写支持可搜索的SQL
查看>>
Shadowbox
查看>>
【 程 序 员 】:伤不起的三十岁,你还有多远 ?
查看>>
openldap安装
查看>>