| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 621 人关注过本帖
标题:有关用引用返回值中的问题??????????????、
取消只看楼主 加入收藏
芦苇太帅了
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2013-8-16
结帖率:75%
收藏
已结贴  问题点数:16 回复次数:1 
有关用引用返回值中的问题??????????????、
#include<iostream.h>
float temp;

float fn1(float r)
{

    temp=r*r*3.14;
    return temp;
}

float& fn2(float r)
{
    temp=r*r*3.14;
    return temp;
}

int main()
{
    float a=fn1(5.0);
    float& b=fn1(5.0);
    float c=fn2(5.0);
    float& d=fn2(5.0);
    cout<<a<<endl;
    cout<<b<<endl;
    cout<<c<<endl;
    cout<<d<<endl;
}
VC6.0提示:--------------------Configuration: pp193 - Win32 Debug--------------------
Compiling...
ppp193.cpp
F:\C++文件\pp193\ppp193.cpp(7) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
F:\C++文件\pp193\ppp193.cpp(13) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
F:\C++文件\pp193\ppp193.cpp(20) : error C2440: 'initializing' : cannot convert from 'float' to 'float &'
        A reference that is not to 'const' cannot be bound to a non-lvalue
F:\C++文件\pp193\ppp193.cpp(27) : warning C4508: 'main' : function should return a value; 'void' return type assumed
执行 cl.exe 时出错.

ppp193.obj - 1 error(s), 0 warning(s)
求大神们分析?????????????????????
搜索更多相关主题的帖子: include warning return 
2013-08-30 17:51
芦苇太帅了
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2013-8-16
收藏
得分:0 
冤枉我了,我试了这种类型的好多程序都是数据类型不能由“DOUBLE”传到“FLOAT”,都提示这种ERROR,所以我没办法了!
2013-08-31 11:45
快速回复:有关用引用返回值中的问题??????????????、
数据加载中...
 
   



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

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