我一直在使用VB一段時間。現在我給C++一個鏡頭,我遇到了字符串,我似乎找不到一種方法來聲明一個字符串。C++字符串聲明
例如在VB:
Dim Something As String = "Some text"
或者
Dim Something As String = ListBox1.SelectedItem
請告訴我等價於C++上面的代碼?
任何幫助表示讚賞。
我一直在使用VB一段時間。現在我給C++一個鏡頭,我遇到了字符串,我似乎找不到一種方法來聲明一個字符串。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;
}
嘿!什麼字符。數組? char str [30]; – 2018-02-14 07:31:45