English 中文(简体)
如何获得以字符串和其他用户定义的类型作为数字的给定支架的大小( 字节)?
原标题:How to get the size (in Bytes) of a given struct with string and other user-defined types as its numbers?

我要在这里获取 strupct 测试B 的大小( 字节) :

struct testA
{
    int x;
};
struct testB
{
    std::string guid;
    testA userData;
};

我可以得到这样的尺寸 但它是愚蠢的:

int testA::size()
{
    return sizeof(testA);
}
int testB::size()
{
    return guid.size()*sizeof(TCHAR) + userData.size();
}

是否有更简单的解决办法?

Ps:眼下的问题是这样的:

我想向数据库描述一个对象, 所以当我的应用程序崩溃时, 我就可以拿回我的数据 。 于是我用 schlite, 用 seperate 列来保存结构的所有成员 。 一切顺利, 除了我有一个成员持有 Protobuf 信息的二进制字符串, 无法插入数据库, 因为这会使 SQL 句子无效 。

因此,我提出两个解决办法:

1 将原药信息连录成json/XML 文本,这对我来说似乎很无聊

2 用 sqlite3_bind_blob 将所有内容倾弃到 db 中, 第三个参数是 blob 数据以字节计的大小, 所以问题在于 : 如何获得 ruct 的大小( 相当复杂的 )?

最佳回答
sizeof (testB) // how many bytes are allocated for testB object itself

可能是你想要的,或

sizeof (testB) + guid.capacity() // also include heap allocation for string

如果不对目前的问题作某种描述,就不可能得出具体的结论。

此信息最明显的用途是评估程序内存的使用情况。 此策略不适宜 。 使用您平台上的配置工具或任何调试工具来报告运行真实世界测试案例时的分配数量和总规模 。 例如, Valgrind 应该这样做 。

EDIT: : 您想要将大小传递到 sqlite_bind_ blob , 它需要 lese /code> 指针到未格式化的内存和从该指针读取的一些字节。

接受 lese {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{}}}}} 的界面将不知道任何数据结构, 如STL所实施的数据结构。 lese{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{}}}}}}}}。C++{{{{{{{{{{{{{{{{{{}}}}}}}}}}}> 需要来自一个没有指针和非常稳定的二元格式的平坦的平板结构。C+{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{}}}}}}}}}}}}}}{{{{{{{{

这样的话,你可以写写

struct testB
{
    char guid[ 36 ]; // ASCII representation of hex of GUID
    testA userData;
};

但最理想的是将 GUID 放到这个 blob 之外的另一个数据库列中。 数据库可以优化 GUID 的存储, 并且您还可能想要用 GUID 查找记录 。

问题回答

暂无回答




相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?