如何查找CStringArray中添加的数据数量

发布于 2024-08-10 22:11:51 字数 247 浏览 6 评论 0原文

大家好, 我正在使用 CStringArray 工作,我想知道如何查找 CStringArray 中添加的数据数量。在下面我将数组的大小定义为 10 但我只添加了三个 3 数据,所以我想知道添加到数组中的数据数量。(这里是 3)。我们有什么办法可以做它在 CStringArray 中查找添加到数组的数据数量

CStringArray 文件路径[10] = {路径1.路径2,路径3};

Helo guys,
I am working wid CStringArray and i want to know how to find the number of datas added in a CStringArray . in the below i have a defined the size of the array as 10 but i have added only three 3 data,So i want to know the number of data's added to the array.(here its 3).Is there any way we can do it in CStringArray to find the number of data's added to array

CStringArray filepaths[10] =
{path1.path2,path3};

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

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

发布评论

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

评论(1

娇女薄笑 2024-08-17 22:11:51

CStringArray::GetCount()

编辑: 在上面的代码中,您实际上创建了一个 CStringArray 数组。我假设您指的是 Microsoft MFC 库中的 CStringArray?

我认为你想做类似的事情:

CStringArray filepaths;
filepaths.Add( path1 );
filepaths.Add( path2 );
filepaths.Add( path3 );
filepaths.GetCount(); //should ==3

CStringArray::GetCount()

Edit: In your code above you have actually created an array of CStringArray's. I am presuming you mean CStringArray from the Microsoft MFC library?

I think you want to be doing something like:

CStringArray filepaths;
filepaths.Add( path1 );
filepaths.Add( path2 );
filepaths.Add( path3 );
filepaths.GetCount(); //should ==3
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文