命名空间 std 中的字符串不命名类型

string in namespace std does not name a type

本文关键字:类型 字符串 std 命名空间      更新时间:2023-10-16

这可能只是一个我没有看到的简单错误,但是我想我只是做错了什么。别担心我没有在我的标头中使用命名空间 std 函数或任何似乎是这个人的问题[我读过类似的问题我的][1] [1]:为什么我得到字符串不命名类型错误?

我现在收到 4 个错误:

C:\文档和设置\我\我的 文档\C++项目\C++\随机句子\名词.h|8|错误:"字符串" 命名空间 'std' 不命名类型|

C:\文档和设置\我\我的 文档\C++项目\C++\随机句子\名词.h|12|错误: 'string' in 命名空间 'std' 不命名类型|

C:\文档和设置\我\我的 文档\C++项目\C++\随机句子\名词.h|13|错误: 'string' in 命名空间 'std' 不命名类型|

C:\文档和设置\我\我的 文档\C++项目\C++\随机句子\名词.cpp|9|错误:否 'std::string nouns::nounGenerator()' 在类中声明的成员函数 "名词"|

||=== 构建完成:4 个错误,0 个警告 ===|

这是我的头文件:

class Nouns
{
    public:
        Nouns();
        std::string noun;
    protected:
    private:
        int rnp; // random noun picker
        std::string dog, cat, rat, coat, toilet, lizard, mime, clown, barbie, pig, lamp, chair, hanger, pancake, biscut, ferret, blanket, tree, door, radio;
        std::string nounGenerator()
};

这是我的 cpp 文件:

#include "Nouns.h"
#include <iostream>
Nouns::Nouns()
{
}
std::string Nouns::nounGenerator(){
    RollRandom rollRandObj;
    rnp = rollRandObj.randNum;
    switch(rnp){
    case 1:
        noun = "dog";
        break;
    case 2:
        noun = "cat";
        break;
    case 3:
        noun = "rat";
        break;
    case 4:
        noun = "coat";
        break;
    case 5:
        noun = "toilet";
        break;
    case 6:
        noun = "lizard";
        break;
    case 7:
        noun = "mime";
        break;
    case 8:
        noun = "clown";
        break;
    case 9:
        noun = "barbie";
        break;
    case 10:
        noun = "pig";
        break;
    case 11:
        noun = "lamp";
        break;
    case 12:
        noun = "chair";
        break;
    case 13:
        noun = "hanger";
        break;
    case 14:
        noun = "pancake";
        break;
    case 15:
        noun = "biscut";
        break;
    case 16:
        noun = "ferret";
        break;
    case 17:
        noun = "blanket";
        break;
    case 18:
        noun = "tree";
        break;
    case 19:
        noun = "door";
        break;
    case 20:
        noun = "radio";
        break;
    }
    return noun;
}

你需要

#include <string>

<iostream>声明的是coutcin,而不是string

Nouns.h不包括

<string>,但它需要。您需要添加

#include <string>

在该文件的顶部,否则编译器在第一次遇到std::string时不知道它是什么。

您需要添加:

#include <string>

在您的头文件中。

注意

#include <string.h>

#include <string>

你需要添加

#include <string>

在这里,您尝试访问string noun::但没有创建名为string noun的命名空间。您正在尝试访问私人文件。