开发者

Where to get iostream.h

开发者 https://www.devze.com 2023-01-16 02:26 出处:网络
I\'m trying to make something in Linux, but it complains that 开发者_开发问答it can\'t find iostream.h. What do I need to install to get this file?The correct name of this standard header is just iost

I'm trying to make something in Linux, but it complains that 开发者_开发问答it can't find iostream.h. What do I need to install to get this file?


The correct name of this standard header is just iostream without an extension.

If your compiler still cannot find it, try the following:

find /usr/include -name iostream -type f -print

...and add it to your include path, following your compiler's documentation.


The header <iostream.h> is an antiquated header from before C++ became standardized as ISO C++ 1998 (it is from the C++ Annotated Reference Manual). The standard C++ header is <iostream>. There are some minor differences between the two, with the biggest difference being that <iostream> puts the included contents in namespace std, so you have to qualify cin, cout, endl, istream, etc. with "std::". As somewhat of a hack (it is a hack because header files should never contain "using" directives as they completely defeat the purpose of namespaces), you could define "iostream.h" as follows:

#ifndef HEADER_IOSTREAM_H
#define HEADER_IOSTREAM_H

#include <iostream>
using namespace std; // Beware, this completely defeats the whole point of
                     // having namespaces and could lead to name clashes; on the
                     // other hand, code that still includes <iostream.h> was
                     // probably created before namespaces, anyway.

#endif

While this is not exactly identical to the original antiquated header, this should be close enough for most purposes (i.e. there should be either nothing or very few things that you will have to fix).


I needed to compile partport on Debian and had problems (CentOS 4.5 worked fine). I did this without any success:

ln -s /usr/include/c++/4.5/iostream /usr/include/c++/4.5/iostream.h

I discovered that iostream.h was provided from C++, and I found it on CentOS 4.5.

So I copied the file iostream.h from CentOS 4.5 to Ubuntu 11.04 (Natty Narwhal), and it worked:

scp root@ip.centos-4.5:/usr/include/c++/3.3.4/backward/iostream.h /usr/include/c++/4.5/iostream.h
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号