当前位置:  技术问答>linux和unix

debian下编译一个含 ifstream 的cpp程序

    来源: 互联网  发布时间:2016-03-09

    本文导语:  #include  #include  bool MilkshapeModel::loadModelData( const char *filename ) { ifstream inputFile( filename, ios::in | ios::binary | ios::nocreate ); if ( inputFile.fail()) return false; // "Couldn't open the model file." inputFile.seekg( 0, ios::end ); long fi...


#include 
#include 
bool MilkshapeModel::loadModelData( const char *filename )
{
ifstream inputFile( filename, ios::in | ios::binary | ios::nocreate );
if ( inputFile.fail())
return false; // "Couldn't open the model file."

inputFile.seekg( 0, ios::end );
long fileSize = inputFile.tellg();
inputFile.seekg( 0, ios::beg );

byte *pBuffer = new byte[fileSize];
inputFile.read( pBuffer, fileSize );
inputFile.close();
        ......


小弟因为没用过g++ 就用下面的形势编译编译
debian:~/missile# g++ -o missile *.cpp -lGL -lGLU 
错误如下:
MilkshapeModel.cpp: In member function 鈥榲irtual bool MilkshapeModel::loadModelData(const char*)鈥?
MilkshapeModel.cpp:117: error: ifstream?was not declared in this scope
MilkshapeModel.cpp:117: error: expected `;' before inputFile鈥?MilkshapeModel.cpp:118: error: 鈥榠nputFile鈥?was not declared in this scope
MilkshapeModel.cpp:121: error: inputFile?was not declared in this scope
MilkshapeModel.cpp:121: error: ios?has not been declared
MilkshapeModel.cpp:123: error: ios?has not been declared

有 ifstream ,ios 没有声明的错误 但是我明明包含了#include /#include  请问大侠这个错误怎么解决 ????

|
#include 
下面加一句试试:
using namespace std;

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 求教硬盘安装Debian,进入安装程序后的详细方法
  • debian下如何通过程序知道U盘已经挂载了
  • Debian 8(Jessie )下面如何安装docker
  • Debian第一张光盘为什么有两个版本?debian-30r1-i386-binary-1.iso和debian-30r1-i386-binary-1_NONUS.iso该下载哪一个呢?它们有什么区别
  • Debian 7(Wheezy)下面如何安装docker
  • ${debian_chroot:+($debian_chroot)}是什么意思?
  • 在线等待…………急…………关于debian__linux的安装问题.我从网站下载了一套debian 的linux,是.iso的镜像文件。问怎么安装。
  • Debian 7 和 Debian 8 用户安装 Java 8的方法
  • 我觉得这是本世纪最让人想跳楼的玩笑了。我在安装了Debian后,重启计算机,让人震惊。Debian系统不见了。哪位帮帮我,怎么解决啊!为什么
  • Debian如何设置开机即进入console模式?
  • 请教Debian下的系列系统命令。
  • debian 查看ssh
  • 大家帮忙比较一下linux的两种类型:debian和redhat!!!
  • [求助]Debian在哪设置CFLAGS?
  • 新手提问:两个关于Debian下面gcc的问题
  • 关于Debian的安装问题。
  • 哪有debian下的gmake下载,急用
  • Ftp安装Debian,为啥老是安装不上图形界面呢?
  • 100分,怎样改变debian的启动顺序????
  • 我安装了Debian,但无法启动图形界面
  • 散分给用debian的朋友
  • 创建debian群。 有兴趣者进
  • 在Debian下安装 Gstreamer的问题


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3