共用方式為


IDebugHostType2::EnumerateChildren 方法 (dbgmodel.h)

EnumerateChildren 方法會傳回列舉值,其會列舉指定符號的所有子系。 例如,針對 C++ 類型,基類、欄位、成員函式等都是類型符號的子系。

語法

HRESULT EnumerateChildren(
  SymbolKind                 kind,
  PCWSTR                     name,
  IDebugHostSymbolEnumerator **ppEnum
);

參數

kind

指出呼叫端想要列舉的子符號類型。 如果傳遞一般值 Symbol,將會列舉所有類型的子符號。

name

如果指定,只會列舉具有這個自變數中所指定名稱的子符號。

ppEnum

列舉值,列舉指定之種類和名稱的子符號將會在這裡傳回。

傳回值

這個方法會傳回 HRESULT,指出成功或失敗。

備註

範例程式碼

ComPtr<IDebugHostType> spType; /* get the type of an object */

// Enumerate every field of this type.  Note that this *WILL NOT* enumerate 
// fields of base classes!
ComPtr<IDebugHostSymbolEnumerator> spEnum;
if (SUCCEEDED(spType->EnumerateChildren(SymbolField, nullptr, &spEnum)))
{
    ComPtr<IDebugHostSymbol> spFieldSymbol;
    HRESULT hr = S_OK;
    while (SUCCEEDED(hr))
    {
        hr = spEnum->GetNext(&spFieldSymbol);
        if (SUCCEEDED(hr))
        {
            ComPtr<IDebugHostField> spField;
            if (SUCCEEDED(spFieldSymbol.As(&spField))) /* should always succeed */
            {
                // spField is each field of the type in turn
            }
        }
    }

    // hr == E_BOUNDS : we hit the end of the enumerator
    // hr == E_ABORT  : user requested interruption, propagate upwards immediately
}

規格需求

需求
標頭 dbgmodel.h

另請參閱

IDebugHostType2 介面