我一直在使用 VB 一段时间。现在我给 C++ 一个机会,我遇到了字符串,我似乎找不到一种方法来声明一个字符串。
例如在 VB 中:
Dim Something As String = "Some text"
或者
Dim Something As String = ListBox1.SelectedItem
什么相当于上面的 C++ 代码?
任何帮助表示赞赏。
C++ 提供了一个string
可以像这样使用的类:
#include <string>
#include <iostream>
int main() {
std::string Something = "Some text";
std::cout << Something << std::endl;
}
使用标准<string>
标题
std::string Something = "Some Text";
在 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;
}