首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >错误:<variable>的参数是用C++初始化的

错误:<variable>的参数是用C++初始化的
EN

Stack Overflow用户
提问于 2019-05-12 21:27:35
回答 1查看 1.4K关注 0票数 0

当我尝试编译我的C代码时,我得到了一个奇怪的错误:当实例化和赋值一个变量时,编译器声明一个错误,即参数已经初始化:

代码语言:javascript
复制
tasks.c: In function ‘hashfunc’:
tasks.c:7:1: error: parameter ‘DESIRED_HASH’ is initialized
char* DESIRED_HASH = "e65493ccdee9c4514fe20e0404f3bcb8";

对于第9行,我得到: error:为参数"word_entry“指定的存储类

我的代码:

代码语言:javascript
复制
#include "md5.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "hash.h"

const char* DESIRED_HASH = "e65493ccdee9c4514fe20e0404f3bcb8";

typedef struct word_entry {
    char* word;
    word_entry* next_word;
}word_entry;

typedef struct result {
    char* a;
    char* b;
}result;

int word_count = 0;

void add_word(word_entry* head, char* new_word)
{
    word_entry* entry = head;

    while(entry->next_word != NULL)
    {    
        if(strcmp(entry->word, new_word) == 0)
        {
            return;
        }

        entry = entry->next_word;
    }

    word_entry* new_entry = malloc(sizeof(word_entry));
    new_entry->word = new_word;
    new_entry->next_word = NULL;

    entry->next_word = new_entry;

    word_count++; 
}

char* get_word(word_entry* head, int index)
{
    word_entry* curr = head;

    for(int i = 0; i < index; i++)
    {
        curr = curr->next_word;
    }

    return curr; 
}


int main(){
    char* words = "das sind die woerter ( ginge auch als methoden parameter )";

    word_entry* head = NULL;

    char* tok = strtok(words, " ");
    head = malloc(sizeof(word_entry));
    head->word = tok;
    head->next_word = NULL;

    tok = strtok(NULL," .,;-:0123456789?!\"*+()|&[]#$/%%’");

    while(tok != NULL)
    {
        add_word(head, tok);      
        tok = strtok(NULL," .,;-:0123456789?!\"*+()|&[]#$/%%’");
    }
    printf("%d words\n", word_count);

    char** pWords = malloc(sizeof(char*) * word_count);

    word_entry* entry = head;

    for(int i = 0; i < word_count; i++)
    {    
        pWords[i] = entry->word;
        entry = entry->next_word;
    }

    for(int i = 0; i < word_count; i++)
    {   
        for(int j = 0; j < word_count; j++)
        {    
            char* first_word = pWords[i]; // oder get_word(i)
            char* second_word = pWords[j]; // oder get_word(j)

            char* result = hashfunc(first_word,second_word);
            int res = strcmp(result,DESIRED_HASH);
            if(res==0){
                printf("%s and %s lead to the hash",first_word,second_word);
            }
        }
        return 0;
    }

这里的错误可能是什么?我将非常感谢任何形式的帮助,因为我现在被困在这里。我怀疑是语法错误,但不确定。

提前谢谢。

PS:"Hash.h“包含:

代码语言:javascript
复制
extern char* hashfunc (char* word1, char* word2)

"Hash.c":

代码语言:javascript
复制
#include "md5.h"
#include <string.h>
#include <stdio.h>
#include <stdlib.h>

char* hashfunc (char* word1, char* word2){

    MD5_CTX md5;
    MD5_Init(&md5);

    char * word = (char *) malloc(strlen(word1)+ strlen(word2) +1);
    strcpy(word,word1);
    strcat(word,word2);

    MD5_Update(&md5,word,strlen(word));

    unsigned char* digest = malloc(1+ (sizeof(char)* 16)); 
    MD5_Final(digest,&md5);


    char* str = malloc(32*sizeof(char));

    for (int i = 0; i < 16; i++){
        sprintf(str+2*i, "%02x", (int)(unsigned char)digest[i]);
    }

    free(word);
    free(digest);
    return str;
}
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2019-05-12 21:48:36

#include指令只是在实际编译之前的预处理步骤中将相应的文件“粘贴”到源代码中。在您的示例中,预处理后的文件如下所示。

代码语言:javascript
复制
extern char* hashfunc (char* word1, char* word2)

char* DESIRED_HASH = "e65493ccdee9c4514fe20e0404f3bcb8";

typedef struct word_entry {
    char* word;
    word_entry* next_word;
}word_entry;

这显然被解释为旧的K&R风格的函数声明,在{}中,参数类型在参数列表之后和函数体之前声明。

头´hash.h`应该只包含函数的原型,而不包含正文。要修复您的错误,请以分号结束函数的定义:

代码语言:javascript
复制
extern char* hashfunc (char* word1, char* word2)

为了排除原型和实际实现之间的不匹配,在hash.c中包含实现中的hash.h也是一种很好的做法。

至于你在评论中提出的另外一个问题:一个类型直到typedef结束后才知道。这意味着您必须定义一个指向使用struct关键字进行类型定义的结构的指针:

代码语言:javascript
复制
struct word_entry* next_word;

或者,我更喜欢这个变体,你可以将typedefstruct定义分开:

代码语言:javascript
复制
typedef struct word_entry word_entry;

struct word_entry {
    char* word;
    word_entry* next_word;
};

( typedef可以在标头中,struct可以在实现文件中。)

票数 4
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/56099718

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档