c_cpp char *➡字符串

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp char *➡字符串相关的知识,希望对你有一定的参考价值。

#include <iostream>
#include <string>
using namespace std;

int main() {
	char str1[20] = "Hello world!";
	string str2(str1);
	cout << str1 << "  " << str2 << endl; // Hello world!  Hello world!
	return 0;
}

以上是关于c_cpp char *➡字符串的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp c中带字符串和char数组的基本io

c_cpp c中带字符串和char数组的基本io

c_cpp 将char pnt移动到字符串中的第一个非空格字符

c_cpp Arduino加入字符串和* char - 来自https://stackoverflow.com/questions/31614364/arduino-joining-string-a

c_cpp 如何在C中将const char *转换为char *?

c_cpp string→char *