gpt4 book ai didi

c++ - MFC CComboBox::InitStorage 文档说明

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:49:46 29 4
gpt4 key购买 nike

我有一个组合框,我需要用可能的大量项目填充它,我查看了 CComboBox 的 MSDN MFC 文档,我找到了 InitStorage成员函数,原型(prototype)如下:

int CComboBox::InitStorage( int nItems, UINT nBytes );

参数如下:

nItems: Specifies the number of items to add.

nBytes: Specifies the amount of memory, in bytes, to allocate for item strings.

这听起来像是您在 nBytes 参数中指定了total 内存量。但是,他们给出的例子与此冲突:

// The pointer to my combo box.
extern CComboBox* pmyComboBox;

// Initialize the storage of the combo box to be 256 strings with
// about 10 characters per string, performance improvement.
int n = pmyComboBox->InitStorage(256, 10);
ASSERT(n != CB_ERRSPACE);

// Add 256 items to the combo box.
CString str;
for (int i=0;i < 256;i++)
{
str.Format(_T("item string %d"), i);
pmyComboBox->AddString( str );
}

此示例表明 nBytes 参数实际上是每个字符串 保留的字节数,而不是总数。考虑到有一个 nItems 参数,这是有意义的,因此可以轻松计算内存总量。

如果有人能澄清这一点,我将不胜感激。

最佳答案

Raymond Chen 提供的此信息表明它是字符串所需的总金额,而不是每个字符串。

http://blogs.msdn.com/b/oldnewthing/archive/2004/06/10/152612.aspx

这是有道理的,因为它可以在字符串长度变化很大的情况下提供更多控制。

关于c++ - MFC CComboBox::InitStorage 文档说明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17731783/

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