鱼C论坛

 找回密码
 立即注册
查看: 31749|回复: 6

关于redefinition; different basic types,定义错类型?大神进来看看

[复制链接]
发表于 2013-12-23 19:07:44 | 显示全部楼层 |阅读模式
3鱼币
#include<stdio.h>
#include<malloc.h>
#define len sizeof(struct student)
struct student *creat();
void print(struct student *p3);
struct student
{
        int num;
        float score;
        struct student *next;
};
int n;
void main()
{

        struct student *p0;
        p0=creat();
       
        print(p0);
}

struct student *creat()
{
        struct student *head,*p1,*p2;
        p1=p2=(struct student *)malloc(len);
        printf("num:\n");
        scanf("%d",&p1->num);
        printf("score:\n");
        scanf("%f",&p1->score);
        head=p1;
        n=0;
        for(;1;)

        {
                n++;
               
                p1=(struct student *)malloc(len);
                p2->next=p1;
                printf("num:\n");
                scanf("%d",&p1->num);
                printf("score:\n");
                scanf("%f",&p1->score);
                if(p1->num)
                {
                        p2=p2->next;
                }
                else
                {
                        p2->next=NULL;
                        break;
                }
                               
               
        }
        return head;
}       


print(struct student *p3)
{
        for(;p3;)
        {
                printf("num:\n",p3->num);
                printf("score\n:",p3->score);
                p3=p3->next;
        }


}


结果 弹出了两个
error C2371: 'print' : redefinition; different basic types
see declaration of 'print'

求教

最佳答案

查看完整内容

哥们儿是你定义print函数时出现错误了! 你声明的时候是void型,定义的时候是int型。所以出错! 不知道你还记不记得甲鱼哥在一节视频当中提到,c语言中,如果不说明函数的返回值类型的话,该函数返回的是int型,也就是说,c语言默认情况下,没有说明函数返回值类型的函数其返回值是int类型的。 所以void print(struct student *p3);和print(struct student *p3)不是同一个函数。 你将print(struct student *p3)改为void print( ...
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2013-12-23 19:07:45 | 显示全部楼层
哥们儿是你定义print函数时出现错误了!
你声明的时候是void型,定义的时候是int型。所以出错!
不知道你还记不记得甲鱼哥在一节视频当中提到,c语言中,如果不说明函数的返回值类型的话,该函数返回的是int型,也就是说,c语言默认情况下,没有说明函数返回值类型的函数其返回值是int类型的。
所以void print(struct student *p3);和print(struct student *p3)不是同一个函数。
你将print(struct student *p3)改为void print(struct student *p3)就可以了!


想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2013-12-23 20:26:39 | 显示全部楼层
挖槽,挂出来一会就被搞定了,哥你牛啊
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2013-12-23 20:35:40 | 显示全部楼层
我擦,这问题还没解决,就是编译没问题了,运行的时候弹出个


error C2660: 'print' : function does not take 1 parameters

麻烦上面的哥们再解决一下好吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2013-12-23 21:04:35 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2013-12-23 23:32:11 | 显示全部楼层
qq18350 发表于 2013-12-23 20:35
我擦,这问题还没解决,就是编译没问题了,运行的时候弹出个

我把你的程序貼出來,改了2樓那個哥們說的地方后,編譯通過啦。gcc編譯的。
function does not take 1 parameters 意思是你的“print”那個函數參數個數不是1個,可能你不小心又寫錯了。你可以複製你1樓的代碼,按照2樓的哥們改一下,編譯即可運行。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2013-12-27 09:15:09 | 显示全部楼层
额,可能是我不小心弄到哪里了,现在终于能运行了,谢谢上面的各位大神了,分现在就给
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-23 03:58

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表