使用联合标记引用结构内的联合给出了错误的地址

发布于 2024-08-28 19:21:35 字数 521 浏览 7 评论 0原文

我需要在如下定义的结构内声明一个联合:

struct MyStruct
{
    int    m_DataType;
    DWORD  m_DataLen;
    union theData
    {
        char    m_Buff [_MAX_PATH];
        struct MyData m_myData;
    } m_Data;
};

最初,我尝试按如下方式访问联合数据(在添加 m_Data 声明之前):

MyStruct m_myStruct;

char* pBuff = m_myStruct.theData::m_Buff;

这会编译,但会向 pBuff 返回一个指向 MyStruct 结构开头的指针,其中导致我覆盖 m_DataType &当我认为我正在写入 m_Buff 缓冲区时,m_DataLength 成员。

我正在使用 Visual Studio 2008。任何人都可以解释这种意外行为吗?谢谢。

I had a need to declare a union inside a structure as defined below:

struct MyStruct
{
    int    m_DataType;
    DWORD  m_DataLen;
    union theData
    {
        char    m_Buff [_MAX_PATH];
        struct MyData m_myData;
    } m_Data;
};

Initially, I tried accessing the union data as follows (before I added the m_Data declaration):

MyStruct m_myStruct;

char* pBuff = m_myStruct.theData::m_Buff;

This compiles but returns to pBuff a pointer to the beginning of the MyStruct structure which caused me to overwrite the m_DataType & m_DataLength members when I thought I was writing to the m_Buff buffer.

I am using Visual Studio 2008. Can anyone explain this unexpected behavior? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

划一舟意中人 2024-09-04 19:21:35

你应该这样写:

char *pBuff = m_myStruct.m_Data.m_Buff;

我希望我知道它是如何按书面方式编译的。

You should be writing:

char *pBuff = m_myStruct.m_Data.m_Buff;

I wish I knew how it was compiling as written.

寻梦旅人 2024-09-04 19:21:35

它不应该编译。 GCC 对这段代码感到厌恶:)

union.cpp:17: error: ‘MyStruct::theData’ is not a base of ‘MyStruct’

It shouldn't compile. GCC barfs at this code with :)

union.cpp:17: error: ‘MyStruct::theData’ is not a base of ‘MyStruct’
放手` 2024-09-04 19:21:35

你不是这个意思吗?

char* pBuff = m_myStruct.m_Data.m_Buff;

Don't you mean this?

char* pBuff = m_myStruct.m_Data.m_Buff;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文