标题:还有问题麻烦大伙阿!
只看楼主
樱桃小新
Rank: 1
等 级:新手上路
帖 子:29
专家分:0
注 册:2005-10-26
 问题点数:0 回复次数:2 
还有问题麻烦大伙阿!

#define List_Size 6
#define List_Add 1
#include<stdio.h>
typedef int ElemType;

struct List_1
{ ElemType *point_1;
int Length;
int ListSize;
};

void CreatList (List_1 &L);
void DeleteList (List_1 &L);
void CreatList (List_1 &L)
{ L.point_1 = (*ElemType)malloc(List_Size * sizeof(ElemType));
if (!L.point_1)
{ printf ("Creat List was failed");
exit(OVERFLOW);
}
printf ("Creat List was succeed");
L.Length = 0;
L.ListSize = List_Size;
}
然后老提示我

issing ')' before '&'
syntax error : missing '{' before '&'
syntax error : '&'
syntax error : ')'
syntax error : missing ')' before '&'
syntax error : missing '{' before '&'
syntax error : '&'
syntax error : ')'
'CreatList' undefined; assuming extern returning int
可是按照提示,说void CreatList (List_1 &L);这句的&前面少个 ")"那也不对劲阿,还有说我creatlist没定义,我明明定义了阿

搜索更多相关主题的帖子: List void ElemType int 麻烦 
2005-10-28 17:10
樱桃小新
Rank: 1
等 级:新手上路
帖 子:29
专家分:0
注 册:2005-10-26
得分:0 

刚刚把

struct List_1
{ ElemType *point_1;
int Length;
int ListSize;
};

void CreatList (List_1 &L);

改成了

struct List_1
{ ElemType *point_1;
int Length;
int ListSize;
}List_2;

void CreatList (List_2 &L);问题就没有了,可是为什么呢?

2005-10-28 18:04
激情依旧
Rank: 1
等 级:新手上路
威 望:2
帖 子:524
专家分:0
注 册:2005-4-4
得分:0 
   大哥。你是c语言还是c++ 。在c语言里面可以在函数调用那里用&amp;这个取地址符?你说你是c++的引用。怎么又不是cout来输出。你没给出主函数。我也不知道怎么帮你测试了。麻烦你将全条程序贴出来。

生是编程人!!!!死是编程鬼!!!!颠峰人生!!!焚尽编程!!! 爱已严重死机!情必须重新启动!情人已和服务器断开连接!网恋也需要重新拨号!-----激情依旧
2005-10-28 18:15



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-31761-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.123979 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved