如何在char数组中插入值



我正在尝试创建一个链表,并将值"Peter"保存在第一个列表元素中。我的char数组有问题。我不能在里面插入"彼得"。

#include <iostream>
#include <string>
#include <stdlib.h>
using namespace std;
struct ListElement{
char name[20];
ListElement* next;
};
int main ()
{
ListElement* first;
first = new ListElement;
first -> name= "Peter"; // Array type 'char [20]' is not assignable

};

要设置char[]数组的值,应该使用strcpystrncpy函数,如:

strcpy(first->name, "Peter");

但是,最好使用std::string类型,您可以直接分配:

struct ListElement{
std::string name;
ListElement* next;
};

first->name = "Peter";为有效代码。

相关内容

  • 没有找到相关文章

最新更新