C语⾔直接调⽤未声明的函数问题描述:
C语⾔直接调⽤未声明的函数的坑,跟之前的的错误有点像。
现象下⾯的函数调⽤,返回值的指针访问不了:
main.c
TestMalloc * test = FuncTest();
printf("%d",test);
Test.h
typedef struct __TestMalloc
{
int a;
char b;
}TestMalloc;
test.c
TestMalloc * FuncTest()
molloc函数{
TestMalloc * rnt = (TestMalloc *)malloc(sizeof(TestMalloc));
memset(rnt,0, sizeof(TestMalloc));
printf("%d", rnt);
return rnt;
}
打印分配的指针与返回的指针都是有效的,那么为啥就是外层的指针访问就崩溃呢。
问题分析:
再vs中会有⼀个警告:
warning C4047: “初始化”:“TestMalloc *”与“int”的间接级别不同
c4047⼀般是两个指针不匹配。怎么会不匹配呢?为题就处在这⼉
再linux中的警告:
初始化时将整数赋给指针,未作类型转换 [默认启⽤]
再linux上直接在内外打印指针,两边的指针位数不⼀致。再vs直接访问不了内存。
问题原因:
如果我们使⽤函数没有前项声明或者在头⽂件⾥声明,c语⾔默认隐式声明。
~ps,请养成使⽤前声明的好习惯,少给⾃⼰和别⼈挖坑。
C98的描述
If the expression that precedes the parenthesized argument list in
a function call consists solely of an identifier, and if no
declaration is visible for this identifier, the identifier is
implicitly declared exactly as if, in the innermost block containing
the function call, the declaration
extern int  identifier();
如果表达式在括号参数列表之前函数调⽤仅包含⼀个标识符,如果没有该标识符可见声明,
该标识符为在包含以下内容的最⾥⾯的块中完全隐式声明
函数调⽤,声明
extern int identifier();
也就是说不管这个函数是什么样,只要返回值不是int,不声明就会有问题。导致返回值就是int值,如果int溢出,导致返回的指针或者其他数据类型出错。
问题解决⽅法:
⽆他,请声明

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。