我已经和VB合作了一段时间了。现在我给C ++一个镜头,我遇到了字符串,我似乎找不到声明字符串的方法。
例如在VB中:
Dim Something As String = "Some text"
或者
Dim Something As String = ListBox1.SelectedItem
与C ++中的上述代码相同?
感谢任何帮助。
答案 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";
答案 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)