11

如何遍历 C++ 安全数组指针指向指针并访问其元素。

我试图复制 Lim Bio Liong http://social.msdn.microsoft.com/Forums/en-US/vcgeneral/thread/022dba14-9abf-4872-9f43-f4fc05bd2602发布的解决方案, 但最奇怪的是 IDL方法签名出来是

HRESULT __stdcall GetTestStructArray([out] SAFEARRAY ** test_struct_array);

代替

HRESULT __stdcall GetTestStructArray([out] SAFEARRAY(TestStruct)* test_struct_array);

有任何想法吗?

提前致谢

4

2 回答 2

24

Safearrays 是用SafeArrayCreateor创建的SafeArrayCreateVector,但是当您询问迭代 SAFEARRAY 时,假设您已经有一个由其他函数返回的 SAFEARRAY。一种方法是使用SafeArrayGetElementAPI,如果您有多维 SAFEARRAY,这将特别方便,因为它允许 IMO 更容易指定索引。

但是,对于向量(一维 SAFEARRAY),直接访问数据并迭代值会更快。这是一个例子:

假设它是longs 的 SAFEARRAY,即。VT_I4

// get them from somewhere. (I will assume that this is done 
// in a way that you are now responsible to free the memory)
SAFEARRAY* saValues = ... 
LONG* pVals;
HRESULT hr = SafeArrayAccessData(saValues, (void**)&pVals); // direct access to SA memory
if (SUCCEEDED(hr))
{
  long lowerBound, upperBound;  // get array bounds
  SafeArrayGetLBound(saValues, 1 , &lowerBound);
  SafeArrayGetUBound(saValues, 1, &upperBound);

  long cnt_elements = upperBound - lowerBound + 1; 
  for (int i = 0; i < cnt_elements; ++i)  // iterate through returned values
  {                              
    LONG lVal = pVals[i];   
    std::cout << "element " << i << ": value = " << lVal << std::endl;
  }       
  SafeArrayUnaccessData(saValues);
}
SafeArrayDestroy(saValues);
于 2012-09-18T20:12:23.187 回答
4

MSDN SafeArrayGetElement 函数SafeArrayGetElement为您提供了用于获取单个对象到数组的代码片段。

SAFEARRAY结构SafeArray*功能解释了可用的 API。

在 ATL/MFC 项目中,您可能希望使用包装类,例如CComSafeArray让事情变得更简单、更容易。请参阅使用 CComSafeArray 简化 SAFEARRAY 编程

于 2012-09-18T20:05:24.627 回答