1

我对多个文件 C++ 程序相当陌生,我遇到了一个我不确定我什至可以充分解释的问题。这是问题所在,我的 .cpp 文件之一不允许我使用其#include 列表中包含的任何函数。

这就是我所做的: 首先,我在 main.cpp 中编写了我的代码。一切正常,它编译并完全按照我告诉它做的事情。现在我正试图将该代码移动到 client.cpp 中,但我无法声明字符串、流或任何其他在 main.cpp 中运行良好的东西。

这是运行良好的代码:

#include <stdio.h>
#include <tchar.h>
#include <iostream>
#include <fstream>
#include <direct.h>
#include <string>

#define SAVE_FILE_LOC "C:\\Saves\\"
int main()        
{        

    ofstream saveFile;    
    string loc;    
    string userName;    
    printf("Please enter your user name:\n");    

    getline(cin, userName);    

    loc = SAVE_FILE_LOC;    
    loc = loc + userName;    
    if (_mkdir(loc.c_str()) == -1){    
        printf("Location Already Exists!\n");
    }    
    else{    
        loc = loc + "\\Profile.txt";
        saveFile.open(loc.c_str());
        saveFile << "Test";
        saveFile.close();
    }    
    return 0;    
}        

现在,我唯一做的就是右键单击我的“源文件”文件夹(在 VS 中)添加一个新的 .cpp 文件,将其命名为 client.cpp,将上面的确切代码复制并粘贴到文件中,现在它没有了不行。

#include <stdio.h>        
#include <tchar.h>        
#include <iostream>        
#include <fstream>        
#include <direct.h>        
#include <string>        

#define SAVE_FILE_LOC "C:\\Saves\\"        

int login(void);        

int login(void)        
{        
    ofstream saveFile;    
    string loc;    
    string userName;    
    printf("Please enter your user name:\n");    

    getline(cin, userName);    

    loc = SAVE_FILE_LOC;    
    loc = loc + userName;    
    if (_mkdir(loc.c_str()) == -1){    
        printf("Location Already Exists!\n");
    }    
    else{    
        loc = loc + "\\Profile.txt";
        saveFile.open(loc.c_str());
        saveFile << "Test";
        saveFile.close();
    }    
    return 0;    
}        

我从上面的代码中得到 30 个编译错误,这是一个例子:

错误 1 ​​错误 C2065:'ofstream':未声明的标识符 ***\Client.cpp 14 1 ConsoleApplication4

错误 2 错误 C2146:语法错误:缺少 ';' 在标识符“saveFile”之前 ***\Client.cpp 14 1 ConsoleApplication4

编译器告诉我,现在它突然不能创建字符串或流或其他任何东西。请注意,我在代码的#include 部分没有收到任何错误,所以它并没有告诉我它找不到库。

在这种情况下,我什至不知道我需要在这里寻找什么,为什么当我创建一个未命名为 main 的 .cpp 文件时我的包含不起作用?

编辑:发现问题,主要使用using namespace std,我在client.cpp中没有那行。

4

1 回答 1

0

string,ofstream来自标准库的名称需要以命名空间开头 std::,您发布的内容既没有using namespace std;在包含下也没有在std::您尝试使用的类/函数之前(字符串、ofstream、getline)

于 2013-09-28T20:08:20.477 回答