gpt4 book ai didi

c - 从这个函数接收值需要什么数据类型?

转载 作者:太空宇宙 更新时间:2023-11-04 04:00:31 25 4
gpt4 key购买 nike

我需要帮助从函数调用中找出赋值的正确数据类型。

我正在尝试获取 N_Vector ucontent 字段中的数据。以下是文档中关于 N_Vector 的内容:

The type N_Vector is defined as

N_Vector u;
tpedef struct _generic_N_Vector *N_Vector;
struct _generic_N_Vector {
void *content;
struct _generic_N_Vector_Ops *ops;
};

...

[The parallel NVECTOR module] defines the content field of N_Vector to be a structure containing global and local lengths, a pointer to the beginning of contiguous local data array, MPI communicator and flag.

struct _N_VectorContent_Parallel {
long int local_length;
long int global_length;
booleantype own_data;
realtype *data;
MPI_Comm comm;
}

所以我猜这意味着 _generic_N_Vector 中的 content“指向”_N_VectorContent_Parallel 类型的结构(对吗?)。

然后我尝试使用宏来访问内容。这是 NV_CONTENT_P 的文档。

v_cont=NV_CONTENT_P(v) sets v_cont to be a pointer to the N_Vector content structure of type struct _N_VectorParallelContent.

注意结构的不同名称!

这是什么意思?我将 v_cont 声明为什么类型?

我试过了

N_Vector u;
...
_N_VectorParallelContent *v_cont1;
_N_VectorContent_Parallel *v_cont2;
v_cont1 = NV_CONTENT_P(u);
v_cont2 = NV_CONTENT_P(u);

但这些声明出现错误“'_N_VectorContent_Parallel' undeclared...”或“'_N_VectorParallelContent' undeclared...”。

但似乎这些结构必须已经被delcared了。我成功声明(并使用了)类型为 N_Vectoru。文档似乎说 N_Vector 包含这两种结构之一(或可能两者)。

那么为什么会出现错误消息?为 v_cont NV_CONTENT_P 接收数据声明的正确数据类型是什么?

我知道这是一个又长又详细的问题,但我对它的理解还不够深入,无法再将其缩减。感谢您的帮助。

最佳答案

我不熟悉这个特定的库,但在我看来它像 the documentation有点不一致。

在关于 NV_CONTENT_P(v) 的宣传之后,它说 NV_CONTENT_P(v) 定义为:

#define NV_CONTENT_P(v) ( (N_VectorContent_Parallel)(v->content) )

所以那个版本的名字可能是正确的。我在那个页面上看不到 N_VectorContent_Parallel 的定义,但它可能在某处被定义为类似于 struct _N_VectorContent_Parallel* 的定义。所以,你或许可以这样做:

N_VectorContent_Parallel v_cont1 = NV_CONTENT_P(u);

请记住,对于结构,struct 是类型名称的一部分。这意味着您在示例中遇到错误,因为您没有包含 struct:

// this is an unknown type
_N_VectorParallelContent *v_cont1;

// this is a "struct _N_VectorParallelContent"
struct _N_VectorParallelContent *v_cont1;

// But use this one, as it follows the macro
N_VectorContent_Parallel v_cont1;

如果您想确切地看到预处理器对您的代码做了什么,您可以使用 gcc 的 -E 标志。

-E    Stop after the preprocessing stage; do not run the compiler proper. 
The output is in the form of preprocessed source code, which is sent to
the standard output.
Input files which don't require preprocessing are ignored.

这对于查看宏和多个复杂头文件的结果特别有用。


编辑:从您链接的来源:

typedef struct _N_VectorContent_Parallel *N_VectorContent_Parallel;

这是一个类型定义,表明 N_VectorContent_Parallelstruct _N_VectorContent_Parallel *(指向 struct _N_VectorContent_Parallel 的指针)相同,这意味着您可以使用 -> 语法访问 v_cont1:

N_VectorContent_Parallel v_cont1;
printf("%d",v_cont1->local_length);

a->b(*a).b 的简写 - 它只是一种更简洁的方式来编写访问 a 的成员所需的取消引用通过指向该结构的指针来构造。如果这看起来令人困惑,请参阅我对 this question 的回答.

就我个人而言,我不喜欢像这样隐藏指针的 typedef,因为很难通过查看代码来判断您是否需要使用 a.ba->b.

关于c - 从这个函数接收值需要什么数据类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12241169/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com