我无法在程序中声明一个字符串:
string MessageBoxText = CharNameTextBox->Text;
它只是不起作用。它说string is undeclared identifier
。我在命名空间或包含或类似的内容中缺少什么?
答案 0 :(得分:14)
确保您已包含此标题:
#include <string>
然后使用std::string
代替string
。这是因为string
在std
命名空间中定义。
不要在命名空间范围内写这个:
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;
另见以下文章: