当前位置:  开发笔记 > 编程语言 > 正文

C++,无法打开源文件"ifstream"Visual Studio

如何解决《C++,无法打开源文件"ifstream"VisualStudio》经验,为你挑选了1个好方法。

我有两个语法?即使项目成功构建,也会出现错误.在我评论过的以下位置中,我的代码的某些部分在Visual Studio中突出显示为红色:

#include 
#include 
#include 
#include  //include is highlighted// Error: cannot open source file "ifstream"

using namespace std;

class DictionarySorter{
public:

    DictionarySorter(){

    }
    void readDic(string name){
        ifstream dicFile (name); //dicFile is highlighted here// Error: incomplete type is not allowed

    }
private:
    vector v;


};

clcto.. 7

std::ifstream在标题中定义.没有标准标题.



1> clcto..:

std::ifstream在标题中定义.没有标准标题.

推荐阅读
地之南_816
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有