- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个设备。它需要命令。我得到结果并希望将它们转化为更可用的形式。
示例:
issue_command()
应该采用一个结构作为请求和一个指向结果结构的指针...但是结构可以是我传递的任何内容。总共大约有 50 个结构体。
issue_command(read_request, &result_struct);
我觉得 C 无法做到这一点,而且我无法想出一个可能的解决方案(这是我的程序中唯一未完成的方面)。
用外行的话来说,我想传递一个被发送到设备的命令结构和一个从字节结果中 memcpy()
得到的结果结构参数。
最佳答案
这是一个示例程序,可以实现我认为您想要的功能:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
/* Enumeration, structs, and union for requests */
enum request_type {
REQUEST_ONE,
REQUEST_TWO
};
struct request_one {
int something;
char data[10];
};
struct request_two {
double something_else;
char data[20];
};
struct request {
enum request_type type;
union {
struct request_one one;
struct request_two two;
} request_struct;
};
/* Enumeration, structs, and union for responses */
enum response_type {
RESPONSE_ONE,
RESPONSE_TWO
};
struct response_one {
char data[10];
};
struct response_two {
char data[20];
};
struct response {
enum response_type type;
union {
struct response_one one;
struct response_two two;
} response_struct;
};
/* Constructor functions for request structs */
struct request * make_request_one(const int something,
char * data) {
struct request * new_request = malloc(sizeof *new_request);
if ( !new_request ) {
perror("Couldn't allocate memory");
exit(EXIT_FAILURE);
}
new_request->type = REQUEST_ONE;
new_request->request_struct.one.something = something;
strcpy(new_request->request_struct.one.data, data);
return new_request;
}
struct request * make_request_two(const double something_else,
char * data) {
struct request * new_request = malloc(sizeof *new_request);
if ( !new_request ) {
perror("Couldn't allocate memory");
exit(EXIT_FAILURE);
}
new_request->type = REQUEST_TWO;
new_request->request_struct.two.something_else = something_else;
strcpy(new_request->request_struct.two.data, data);
return new_request;
}
/* Constructor functions for response structs */
struct response * make_response_one(char * data) {
struct response * new_response = malloc(sizeof *new_response);
if ( !new_response ) {
perror("Couldn't allocate memory");
exit(EXIT_FAILURE);
}
new_response->type = RESPONSE_ONE;
strcpy(new_response->response_struct.one.data, data);
return new_response;
}
struct response * make_response_two(char * data) {
struct response * new_response = malloc(sizeof *new_response);
if ( !new_response ) {
perror("Couldn't allocate memory");
exit(EXIT_FAILURE);
}
new_response->type = RESPONSE_TWO;
strcpy(new_response->response_struct.two.data, data);
return new_response;
}
/* Issue command function */
struct response * issue_command(struct request * request) {
struct response * response;
switch ( request->type ) {
case REQUEST_ONE:
response = make_response_one("resp 1");
break;
case REQUEST_TWO:
response = make_response_two("response 2 stuff");
break;
default:
assert(0);
}
return response;
}
int main(void) {
/* Call issue_command() with request and response one */
struct request * req1 = make_request_one(666, "req 1");
struct response * resp1 = issue_command(req1);
printf("Request: %s, Response: %s\n",
req1->request_struct.one.data,
resp1->response_struct.one.data);
free(req1);
free(resp1);
/* Call issue_command() with request and response two */
struct request * req2 = make_request_two(3.14159, "request 2 stuff");
struct response * resp2 = issue_command(req2);
printf("Request: %s, Response: %s\n",
req2->request_struct.two.data,
resp2->response_struct.two.data);
free(req2);
free(resp2);
return 0;
}
和输出:
paul@local:~/src/sandbox$ ./reqresp
Request: req 1, Response: resp 1
Request: request 2 stuff, Response: response 2 stuff
paul@local:~/src/sandbox$
如您所见,issue_command()
函数通过单个输入参数有效地接受两种不同类型的结构,并通过单个返回值有效地返回两种不同类型的结构体。结构。在这两种情况下,这是通过将不同的结构包装在 union 中来完成的,但是您可以通过 void 指针实现类似的结果,并且实际上传递和返回完全不同的结构(而不是包含 union 的单个结构)不同的结构)。
我在 issue_command()
中所做的就是读取类型并构建适当的响应,但是在 switch
block 中,一旦您确定了要使用的类型有了,你可以做你喜欢做的事,访问请求的各个成员,或者memcpy()整个事情,或者其他什么。同样,对于响应,一旦您知道自己的请求类型,您就可以根据需要阅读并填写响应成员。
关于c - 函数如何处理多个结构作为结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25964135/
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
我是一名优秀的程序员,十分优秀!