新微赢技术网
标题:
函数输出问题
[打印本页]
作者:
liu
时间:
2009-11-3 01:36
标题:
函数输出问题
#include <iostream>
#include <stdlib.h>
using namespace std;
int * getint(char *p)
{
int value=20;
cout<<p<<endl;
return &value;
}
void somefn(char *p)
{
int b=40;
cout<<p<<endl;
}
int main(int argc, char *argv[])
{
int *p=getint("input a value:");
cout<<*p<<endl;
somefn("it is uncertain:");
cout<<*p<<endl;
system("PAUSE");
return 0;
}
//这里的输出是
input a value
20
it is uncertain
40 //按书上的说法这里不应该输出40 不解
#include <iostream>
#include <stdlib.h>
using namespace std;
int * getint(char *p)
{
int value=20;
cout<<p<<endl;
}
void somefn(char *p)
{
int b=40;
cout<<p<<endl;
}
int main(int argc, char *argv[])
{
int *p=getint("input a value:");
cout<<*p<<endl;
somefn("it is uncertain:");
cout<<*p<<endl;
system("PAUSE");
return 0;
}
//这里的输出是
input a value
4373020
it is uncertain
4373020
作者:
没心没肺
时间:
2009-11-3 01:36
楼主,第二个程序能编译通过么?int* getint(char *p)缺少返回值阿。
作者:
夜流冰
时间:
2009-11-3 01:36
dev可以通过 VC不知道`~
作者:
前进
时间:
2009-11-3 01:36
是啊, 我也试了下,可以通过,为什么会输出40?
下面没返回值怎么也可以通过编译,我无语
作者:
逍遥
时间:
2009-11-3 01:36
这是哪本书写的
输出的肯定是随机数
DEV为什么没有返回值(DEV这么智能呀)我不知道
但他输出肯定是随机数
作者:
[日青](忝)
时间:
2009-11-3 01:36
第二个程序的运行结果是指针p所指内容,具体是多少,不能确定,总之是个无意义的值。
第一个程序,虽然有返回值,但是返回的是一个局部变量,出了getint函数,value就被释放了。
作者:
女装批发3
时间:
2009-11-3 01:36
没有返回值可以通过编译?
还是不能理解`~~
作者:
青松
时间:
2009-11-3 01:36
用VC跑了一下,第一个程序,由于value是局部变量,出了函数就被释放掉,结果输出的都是随机数。
第二个程序,编译不过去。
但是Borland C++的话,第一个程序是,20 随机数 第二个程序的两个结果都是随机数。
我觉得还是VC的复合C++语法。
作者:
一世豪杰
时间:
2009-11-3 01:36
恩
对
不过我很想知道DEV这里是怎么做的(难道系统界面这么好)
这充分说明Borland C++在这里做的不好(都应该是随机数)
局部变量被释放
作者:
睡在风里
时间:
2009-11-3 01:36
谢了先 ~~~
欢迎光临 新微赢技术网 (http://bbs.weiying.cn/)
Powered by Discuz! X3.2