C语言直接调用未声明的函数

  • Post author:
  • Post category:其他



问题描述:

C语言直接调用未声明的函数的坑,跟之前的

一篇直接malloc返回值

的错误有点像。

现象下面的函数调用,返回值的指针访问不了:

main.c

	TestMalloc * test = FuncTest();
	printf("%d",test);

Test.h

typedef struct __TestMalloc
{
	int a;
	char b;
}TestMalloc;

test.c


TestMalloc * FuncTest()
{
	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溢出,导致返回的指针或者其他数据类型出错。


问题解决方法:

无他,请声明



版权声明:本文为xinqingwuji原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。