为什么我不能在程序中声明一个字符串:“string is unclared identifier”

时间:2011-10-02 07:26:34

标签: c++ string visual-c++

我无法在程序中声明一个字符串:

string MessageBoxText = CharNameTextBox->Text;

它只是不起作用。它说string is undeclared identifier。我在命名空间或包含或类似的内容中缺少什么?

3 个答案:

答案 0 :(得分:14)

确保您已包含此标题:

#include <string>

然后使用std::string代替string。这是因为stringstd命名空间中定义。

不要在命名空间范围内写这个:

using namespace std; //bad practice if you write this at namespace scope

但是,在功能范围内编写它并不是那么糟糕。但最好的是我之前建议的那个:

使用std::string

std::string MessageBoxText = CharNameTextBox->Text;

答案 1 :(得分:3)

要在C ++中使用标准string类,您需要#include <string>。添加后,#include指令string将在std命名空间中定义,您可以将其称为std::string

E.g。

#include <string>
#include <iostream>

int main()
{
    std::string hw( "Hello, world!\n" );
    std::cout << hw;
    return 0;
}

答案 2 :(得分:2)

您是否以任何方式使用C ++ / CLI(.NET的Microsoft扩展,而不是标准的ISO C ++)进行编译?

在这种情况下,您应该执行以下操作:

System::String^ MessageBoxText = CharNameTextBox->Text;

另见以下文章: