hi, how to overload operators in C++?
登录 | 论坛导航 -> 华新鲜事 -> 社会百科 | 本帖共有 5 楼,分 1 页, 当前显示第 1 页 : 本帖树形列表 : 刷新 : 返回上一页
<<始页  [1]  末页>>
作者:chancing (等级:3 - 略知一二,发帖:750) 发表:2004-12-28 23:54:44  楼主  关注此帖
hi, how to overload operators in C++?
Normally, following lines are not allowed: double d = 5; d = d^2; //i wanna d to be 25; How do I overload the operator ^ myself, to allow d=d^2? Thanks!

团结努力,不怕牺牲,排除万难.
我们要发达.
 

欢迎来到华新中文网,踊跃发帖是支持我们的最好方法!原文 / 传统版 / WAP版只看此人从这里展开收起列表
作者:xscheme (等级:3 - 略知一二,发帖:939) 发表:2004-12-29 05:25:49  2楼 评分:
depends
from your words, should do it in this way.

double operator ^(double a, double b) {
return ...;
}

this might not work, because compiler may not be able to differetiate this with its normal meaning - Bitwise Exclusive OR Operator: ^. try it by yourself with the compiler.

Remember to do cast before the actual prarameter, or it will be just Bitwise Exclusive OR Operator if it happend both operands are of int type.
欢迎来到华新中文网,踊跃发帖是支持我们的最好方法!原文 / 传统版 / WAP版只看此人从这里展开收起列表
作者:icky (等级:15 - 最接近神,发帖:7923) 发表:2004-12-29 08:51:03  3楼 评分:
-->
double operator ^ (double d)
{
return d*d;
}
欢迎来到华新中文网,踊跃发帖是支持我们的最好方法!原文 / 传统版 / WAP版只看此人从这里展开收起列表
作者:icky (等级:15 - 最接近神,发帖:7923) 发表:2004-12-29 08:54:07  4楼
-->double operator ^ (double d) { return d*d; }
^ is XOR, you can use another operator name for it
欢迎来到华新中文网,踊跃发帖是支持我们的最好方法!原文 / 传统版 / WAP版只看此人从这里展开收起列表
作者:hula (等级:7 - 出类拔萃,发帖:3684) 发表:2004-12-30 07:15:30  5楼
operator's primitive meaning is not allowed to be changed..
and new operator cannot be created. read more about operator overloading on any c++ book
欢迎来到华新中文网,踊跃发帖是支持我们的最好方法!原文 / 传统版 / WAP版只看此人从这里展开收起列表
论坛导航 -> 华新鲜事 -> 社会百科 | 返回上一页 | 本主题共有 5 篇文章,分 1 页, 当前显示第 1 页 | 回到顶部
<<始页  [1]  末页>>

请登录后回复:帐号   密码