C ++字符串声明

时间:2012-04-18 22:01:38

标签: c++ string

我已经和VB合作了一段时间了。现在我给C ++一个镜头,我遇到了字符串,我似乎找不到声明字符串的方法。

例如在VB中:

Dim Something As String = "Some text"

或者

Dim Something As String = ListBox1.SelectedItem

与C ++中的上述代码相同?

感谢任何帮助。

4 个答案:

答案 0 :(得分:23)

C ++提供了一个string类,可以像这样使用:

#include <string>
#include <iostream>

int main() {
    std::string Something = "Some text";
    std::cout << Something << std::endl;
}

答案 1 :(得分:2)

使用标准<string>标题

std::string Something = "Some Text";

http://www.dreamincode.net/forums/topic/42209-c-strings/

答案 2 :(得分:2)

在C ++中,你可以声明一个这样的字符串:

#include <string>

using namespace std;

int main()
{
    string str1("argue2000"); //define a string and Initialize str1 with "argue2000"    
    string str2 = "argue2000"; // define a string and assign str2 with "argue2000"
    string str3;  //just declare a string, it has no value
    return 1;
}

答案 3 :(得分:1)

C ++中的首选字符串类型是string,在名称空间std中定义,在标题<string>中,您可以像这样初始化它,例如:

#include <string>

int main()
{
   std::string str1("Some text");
   std::string str2 = "Some text";
}

有关它的更多信息,您可以找到herehere