gpt4 book ai didi

c++ - 指向结构成员?

转载 作者:行者123 更新时间:2023-12-05 09:33:10 25 4
gpt4 key购买 nike

我有以下 typedef ined struct :

typedef struct
{
uint8_t u8Byte1; // This byte takes the needed values sometimes
uint8_t u8Byte2; // Not used
uint8_t u8Byte3; // This byte takes the needed values the other times
uint8_t u8Byte4; // Not used
} tstrMapMetadata;

我有一个线程填充(来自传感器的数据)这个结构并使用它的值之一:

while(true)
{
tstrMapMetadata * pstrMapMetadata = something();

if(pstrMapMetadata->u8Byte1 == SOMETHING) //<---- this line
{
//Do something special
}
}

但现在我有一个 condition (在线程中保持不变),我想在其中比较用 u8Byte3 完成的标记行而不是 u8Byte1 .

当然可以

if(((condition) ? pstrMapMetadata->u8Byte1 : pstrMapMetadata->u8Byte3) == SOMETHING) //<---- this line

但我会一直做相同比较。

有没有办法在声明之前指向该结构的成员之一(他们是这样称呼的吗?)?

类似的东西(这段代码当然不起作用,但让我知道我在寻找什么):

uint8_t * coolPointer;
if(condition)
{
coolPointer = (someOperation)tstrMapMetadata(u8Byte1);
}
else
{
coolPointer = (someOperation)tstrMapMetadata(u8Byte3);
}

while(true)
{
tstrMapMetadata * pstrMapMetadata = something();

if(coolPointer == SOMETHING) //<---- this line
{
//Do something special
}
}

谢谢!

最佳答案

pointer to member :

uint8_t tstrMapMetadata::*member = condition ?
&tstrMapMetadata::u8Byte1 :
&tstrMapMetadata::u8Byte3;

while (true)
{
tstrMapMetadata* pstrMapMetadata = something();

if (pstrMapMetadata->*member == SOMETHING) // usage with ->* ( .* for objet )
{
//Do something special
}
}

关于c++ - 指向结构成员?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67384979/

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