如何查找CStringArray中添加的数据数量
大家好, 我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CStringArray::GetCount()
编辑: 在上面的代码中,您实际上创建了一个 CStringArray 数组。我假设您指的是 Microsoft MFC 库中的 CStringArray?
我认为你想做类似的事情:
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: