gpt4 book ai didi

c++ - 在 struct[] 中分配 char* 指针值(谁是 struct 成员)的最优化方法

转载 作者:搜寻专家 更新时间:2023-10-31 02:19:57 25 4
gpt4 key购买 nike

我正在尝试制作一个结构集合,其中一些成员是一种字符串类型,并且由于字符串处理起来“昂贵”,我正在尝试通过使用指针来最大化性能。

我尽力从教程中学习,但 C++ 中的字符串种类繁多。

如果值的类型是 char*,设置 strVal 的最快方法是什么?

DataCollection.h

extern "C" __declspec(dllexport) void GetContCollection(int CollectionLength,int StrLength, DataContainer** Collection);

typedef struct {
int iValue;
char* strValue;
}DataContainer;

DataCollection.cpp

extern "C" __declspec(dllexport) void GetContCollection(int CollectionLength,int StrLength, DataContainer** Collection)
{
*Collection = (DataContainer*)LocalAlloc(0, CollectionLength * sizeof(DataContainer));
// say i need to get a record from database returning a char array
// and i use current datatype
*DataContainer CurElement = *Collection;

// iteration on each element of the collection
for(int i=0, i< CollectionLength; i++, CurElement++)
{
char* x = getsomeValuefromSystemasChar();

//.... how to assign CurElement->strValue=?
CurElement->strValue =// kind of Allocation is needed or ....just assign
//next, do i have to copy value or just assign it ?
CurElement->strValue = x or strcpy(dest,source)// if copying must take place which function would be the best?
}
}

设置 CurElement 的正确且最优化的方法是什么?

最佳答案

对该问题的评论和编辑已使该答案的大部分内容过时。我纯粹为可能查看编辑历史的任何人保留它。仍然有效的部分位于此答案的末尾。

如果正如问题所说,结构中的所有 char * 都将引用字符串文字,那么您不需要分配内存,也不需要在分配时的特殊步骤方式。

字符串文字具有静态存储持续时间,因此您只需将其地址分配给指针即可,一切都会好起来的。但是,您不想让任何人不小心写入字符串文字,因此您通常希望使用指向 const 的指针:

typedef struct {
int iValue;
char const * strValue;
} DataContainer;

然后需要赋值的时候赋值即可:

extern "C" __declspec(dllexport) void GetContCollection(int CollectionLength,int StrLength, DataContainer** Collection)
{
// ...
CurElement->strValue = "This is a string literal";
}

您可以(绝对)计算具有静态存储持续时间的字符串文字,因此毫无疑问这会起作用。由于您只分配一个指针,因此它也会很快。

不幸的是,它也有些脆弱——如果有人在这里分配字符串文字以外的东西,它很容易损坏。

这给我们带来了下一个问题:您是否真的在处理字符串文字根本。尽管您特别询问了字符串文字,但您显示的演示代码看起来根本不像是在处理字符串文字——如果不是,像上面这样的代码将会崩溃。

如果你必须处理那个,

我会说只使用 std::string。如果您坚持自己这样做,则很有可能会产生损坏的东西,而您在不损坏任何东西的情况下获得实质性速度优势的机会很小(几乎没有)。

关于c++ - 在 struct[] 中分配 char* 指针值(谁是 struct 成员)的最优化方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33245923/

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