直接用=赋值就可以了。举例如下:
//#include "stdafx.h"//If the vc++6.0, with this line.
#include
#include
using namespace std;
int main(void){
string s;
s="ABC";
cout << s << endl;
s="1011001";
cout << s << endl;
return 0;
}
可以直接赋值吧。二进制串也是字符串,都可以直接用的。而且C++的string对象很强大的。
string text1;
text1 = "abc";
int *p = new int[n];
string str( (char*)p, sizeof(int)*n );
看你怎么解析了。
string str;
str.Format(_T("ABC"));
string str = "your string"; //c#
String str = "your string"; //Java