1

我正在尝试将字符串从一个 char * 复制到另一个,但不知道为什么复制不起作用。

我正在编写一个链表程序——Linklist并且涉及到两个char *指针。每个指向astruct Node如下:

struct Node
{
    char * message;
    char * text;
    struct Node * next;
};

typedef struct Node * Linklist;

我写了一个函数,它有两个参数来创建一个新的LinkNode

Linklist create(char *message,char * text)
{
    Linklist list =(Linklist)malloc(sizeof(struct Node));
    //the message changes after the sentence but text is right.
    if(list==NULL) printf("error:malloc"); 
    list->message=message;
    list->text=text;
    return list;
}

主要:

char *消息是“helloworld”

char *text 是“测试”

在 malloc 之后,我在 gdb 中查看了消息。消息更改为“/21F/002”,但文本仍为“测试”

const在消息之前添加了,但它不起作用。

谁能告诉发生了什么?

谢谢。

4

2 回答 2

4

问题是 c 中的字符串的工作方式不同。以下是复制字符串的方法:

Linklist create(char *message,char * text)
{
    Linklist list =(Linklist)malloc(sizeof(struct Node));
    //the message changes after the sentence but text is right.
    if(list==NULL) printf("error:malloc"); 

    list->message = malloc(strlen(message)+1);
    if(list->message==NULL) printf("error:malloc"); 
    strcpy(list->message,message);

    list->text = malloc(strlen(text)+1);
    if(list->text==NULL) printf("error:malloc"); 
    strcpy(list->text,text);

    return list;
}

当然,您必须在这里小心,确保消息和文本不是来自用户,否则您将面临缓冲区溢出漏洞的风险。

您可以使用 strncpy() 来解决该问题。

于 2012-07-07T16:42:18.280 回答
2

you must allocate the storage for your pointers message and text and then copy the string.

于 2012-07-07T17:11:24.373 回答