标题:关于 函数调用运算符 的类问题
只看楼主
夏一站
Rank: 1
等 级:新手上路
帖 子:11
专家分:7
注 册:2012-4-26
结帖率:80%
已结贴  问题点数:10 回复次数:1 
关于 函数调用运算符 的类问题
#include<iostream.h>
class Fun
{
  public:
     double operator ( ) (double x,double y) const
{
  return (x*x+5*x-8)*(y+5);
}
};
void main()
{
  Fun f1,f2;
  cout<<f1(1.5,2.0)<<end1;
  cout<<f2(2.1,1.0)<<end1;
}


请各位大侠看一下为什么运行不出来?????
搜索更多相关主题的帖子: double void public return 
2012-04-26 14:45
寒风中的细雨
Rank: 17Rank: 17Rank: 17Rank: 17Rank: 17
等 级:贵宾
威 望:66
帖 子:1710
专家分:8645
注 册:2009-9-15
得分:10 
程序代码:
#include<iostream>
using namespace std;

class Fun
{
public:
    double operator ( ) (double x,double y) const
    {
        return (x*x+5*x-8)*(y+5);
    }
};

void main()
{
    Fun f1,f2;
    cout<<f1(1.5,2.0)<<endl;
    cout<<f2(2.1,1.0)<<endl;
}

 
2012-04-26 22:05



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




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

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