0

我有一个我创建的结构类型

typedef struct component {
    char IPaddress[25];
    int serverPortNumber;
    unsigned int handle;
};

我创建了该结构的三个实例。我正在使用内置的 CVI 功能连接到 TCP 服务器。它具有我提供的以下形式和参数。

ConnectToTCPServerEx(
    pComponent->handle, pComponent->serverPortNumber, 
    pComponent->IPaddress, ClientTCPCB, NULL, TCP_TIMEOUT, TCP_ANY_LOCAL_PORT)

在此函数调用之前的代码行中,我使用以下表达式来获取已创建的已声明组件结构的地址。

struct component *pComponent = &SomeComponentStruct;

我的编译器返回以下

警告:不兼容的整数到指针转换将“unsigned int”传递给“unsigned int *”类型的参数;用 & 取地址

为什么我会收到此警告?CVI 函数期望 'handle' 参数是通过引用传递的无符号整数(以便可以写入)。结构 .handle 的成员确实是无符号整数。但在这种情况下,我传递一个指向结构的指针,然后使用 -> 运算符访问“句柄”。向其中添加“&”是没有意义的,因为那时我会将一个指针传递给一个指针。

也许是因为以下行

struct component *pComponent = &SomeComponentStruct;

在我的代码中实际上是两行,我声明了一个指向类型结构组件的指针,然后使用一个函数为其分配实际贴花结构组件 onject 的地址(取决于 int 参数)。

struct component *pComponent = NULL;

pComponent = setComponent(component) //this function returns the address of a declared struct component

编译器只是没有捕捉到这个吗?

4

1 回答 1

1

pComponent->handle是成员对象本身,而不是指向它的指针。 pComponent是一个指针,是的,但->取消了它的引用。您确实需要 do &pComponent->handle,然后您将拥有一个指向对象的指针(而不是指向指针的指针)。这是完全正确的。

于 2021-09-29T16:33:21.767 回答