新微赢技术网

标题: 关于 iostream 的几个小问题 [打印本页]

作者: 罗米欧    时间: 2009-11-5 01:07
标题: 关于 iostream 的几个小问题
虽然知道在C++里面要用#include  <iostream>
                     using namespace std;
但不知道以下一个问题的到底是为什么

1
如果我建一个工程,然后在不同的.CPP文件里面用着两种形式
#include  "iostream.h"
在main函数里面用的是:#include  "iostream"
                      using namespace std;
不是按道理来说,这两种是不能混用么?如果把“”改成了<>编译就无法通过了,可是如果是“”就能通过也能运行。。谁能告诉我为什么呢?~~~

2
关于  ERROR:unexpected file found end
老师说,是因为C++里面有一个预定义函数头(?我记不清楚了。。)所以在我编译的MAIN函数末尾会出现这个错误。然后就把那个功能去掉吧。。可是还是不能。请看看程序的调用部分吧
#include  <iosteam>
using namespace std;
#include  "animal.h"
#include  "dog.h"
int main(){
......
}
我就把它改成了
#include  "animal.h"
#include  "dog.h"
#include  <iosteam>
using namespace std;

int main(){
......
}
改动了下iostream的位置,那个问题就解决了。。。の。。这个是为什么呢~~~~




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2