如何将一个字符串常量赋值给一个STRING变量?

2024-12-26 12:03:03
推荐回答(5个)
回答1:

直接用=赋值就可以了。举例如下:

//#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;
}

回答2:

可以直接赋值吧。二进制串也是字符串,都可以直接用的。而且C++的string对象很强大的。

回答3:

string text1;
text1 = "abc";

int *p = new int[n];
string str( (char*)p, sizeof(int)*n );
看你怎么解析了。

回答4:

string str;
str.Format(_T("ABC"));

回答5:

string str = "your string"; //c#
String str = "your string"; //Java