标题:请问结构体能不能重载运算符?如果有,怎么实现?
只看楼主
codelet
Rank: 2
来 自:广东深圳
等 级:论坛游民
帖 子:61
专家分:37
注 册:2007-11-6
结帖率:100%
 问题点数:0 回复次数:3 
请问结构体能不能重载运算符?如果有,怎么实现?
如题。
       被运算符重载搞得头大~~

另外,指针运算符 T* 怎么重载?
搜索更多相关主题的帖子: 算符 体能 结构 载运 
2007-11-23 22:07
Arcticanimal
Rank: 3Rank: 3
等 级:论坛游民
威 望:7
帖 子:341
专家分:20
注 册:2007-3-17
得分:0 
C++中可以把结构体看作成员全部为public的类

try new catch
2007-11-23 22:55
codelet
Rank: 2
来 自:广东深圳
等 级:论坛游民
帖 子:61
专家分:37
注 册:2007-11-6
得分:0 
struct Datatype
{
    int number;
    int priority;
    bool operator <(Datatype a, Datatype b)
    {
        return a.priority < b.priority;
    }
};


编译有错。
按照楼上说的,应该可以重载运算符吧?能否具体点,应该怎么写上面的函数?

Losing emotion, Finding devotion.
2007-11-23 23:01
Arcticanimal
Rank: 3Rank: 3
等 级:论坛游民
威 望:7
帖 子:341
专家分:20
注 册:2007-3-17
得分:0 
显然会编译有错, 运算符的重载不能改变操作数的个数

bool operator <(Datetype b)
{
          return priority < b.priority;
}

或者更普遍的
friend   bool operator <(Datatype a, Datatype b)
 {
         return a.priority < b.priority;
 }

try new catch
2007-12-01 23:46



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-187986-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.860640 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved