- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
为了解释我尝试这样做的原因,我的环境限制要求我使用自动生成的代码。生成的代码非常相似,我想调用一批基本相同的函数。我需要使用符合 C89 或 C99 标准的解决方案。
从阅读规范来看,下面的代码似乎是合法的,但我不确定转换函数指针以返回 union 类型。谁能指出这是否合法或违反了规范的哪一部分?
#include <stdio.h>
#include <stdlib.h>
/* Automagically generated types */
struct A_return_type {
int index;
unsigned int options;
};
struct A_return_type *A_function(int x) {
struct A_return_type *A_return = malloc(sizeof(*A_return));
A_return->index = x;
A_return->options = 0xA;
return A_return;
}
struct B_return_type {
int index;
unsigned int options;
};
struct B_return_type *B_function(int x) {
struct B_return_type *B_return = malloc(sizeof(*B_return));
B_return->index = x;
B_return->options = 0xB;
return B_return;
}
struct C_return_type {
int index;
unsigned int options;
};
struct C_return_type *C_function(int x) {
struct C_return_type *C_return = malloc(sizeof(*C_return));
C_return->index = x;
C_return->options = 0xC;
return C_return;
}
/* End generated types */
int main(int argc, char *argv[]) {
/*--------------------------------------------------------------
All of the generated methods take the same arguments and return
structs with the same members in the same order. It is permitted
to inspect the common initial part of any structs in a union,
per C89 3.3.2.3 p5.
--------------------------------------------------------------*/
union return_types {
struct {
int index;
unsigned int options;
} common_return;
struct A_return_type A_return;
struct B_return_type B_return;
struct C_return_type C_return;
};
/*----------------------------------------------------------
Function pointers are compatible if their return types and
parameter lists are compatible per C89 3.5.4.3 p9.
----------------------------------------------------------*/
typedef union return_types *(*generated_function)(int);
generated_function function_array[] = {
(generated_function)A_function
, (generated_function)B_function
, (generated_function)C_function
};
for(int i = 0; i < sizeof(function_array)/sizeof(function_array[0]); ++i) {
printf("%x\n", function_array[i](0)->common_return.options);
}
}
最佳答案
您可以根据需要将指向函数的指针转换为其他类型的指向函数的指针(C 2018 6.3.2.3 8:“指向一种类型的函数的指针可以转换为指向另一种类型的函数的指针……” ), 但如果你使用一个转换指针来调用一个类型不兼容的函数,C 标准没有定义行为(同上:“......如果一个转换指针被用来调用一个类型与引用类型不兼容的函数,行为未定义。”)。
返回 struct A_return_type *
的函数与返回 union return_types *
的函数不兼容。你几乎被 6.2.5 28 拯救了,它说“......所有指向结构类型的指针都应具有相同的表示和对齐要求。所有指向 union 类型的指针都应具有相同的表示和对齐要求……”,那里的脚注说“相同的表示和对齐要求意味着暗示函数参数、函数返回值和 union 成员的可互换性”这种互换性意味着返回 struct foo *
的函数与返回 struct bar *
的函数兼容。不幸的是,您正在调用一个函数,该函数返回一个指向结构的指针,该函数的表达式返回一个指向 union 的指针,并且标准没有说它们具有相同的表示和对齐要求,或者它们是可互换的。
关于c - 转换为兼容返回类型的 union 会满足函数指针的兼容性标准吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58511889/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!