1

如何从 IVector^ 转换为 Vector^?文档涵盖了隐式工作的相反情况,但是当我尝试隐式转换和编译时这个不会编译,但是当我尝试转换它时会引发异常。我已经查看了参考资料,但我无法涵盖这一点。

这样做的原因是我希望将 Vector^ 存储在我的类中,并且仅在与 JavaScript 通信的属性中使用 IVector,因为 Vector 工作得更快,应该用于内部计算。

谢谢

编辑: 我很抱歉太简短了。这是对这种情况的更广泛的解释。

if(parent->childNodes != nullptr && parent->childNodes->Size > 0)
    {
        for (uint32 i = 0; i < parent->childNodes->Size; i++)
        {
            ContentElementsNode^ childNode;
            IVector<ContentElementsNode^>^ childNodes = parent->childNodes;
            childNode = childNodes->GetAt(i);

            Vector<ContentElementsNode^>^ childWords = wordObjects(childNode);
            for each (ContentElementsNode^ word in childWords)
                result->Append(word);
        }
    }

该函数在第一次调用 GetAt(i) 行时失败。我认为这可能是 IVector 的一些问题,所以我尝试使用 Vector 但无法转换它。这是 ContentElementsNode 声明:

public ref class ContentElementsNode sealed
{

private:
    IVector<ContentElementsNode^>^ childNodes_;
    String^ textContent_;
    String^ localName_;
    Rectangle boundingBox_;
    String^ id_;
public:
    ContentElementsNode(void);
    property IVector<ContentElementsNode^>^ childNodes {
        void set(IVector<ContentElementsNode^>^ value)
        {
            childNodes_ = value;
        }
        IVector<ContentElementsNode^>^ get()
        {
            return childNodes_;
        }
    }
    property String^ textContent {
        String^ get() {
            return textContent_;
        }
        void set(String^ value) {
            textContent_ = value;
        }
    }
    property String^ localName {
        String^ get() {
            return localName_;
        }
        void set(String^ value) {
            localName_ = value;
        }
    }
    property Rectangle boundingBox {
        Rectangle get() {
            return boundingBox_;
        }
        void set(Rectangle value) {
            boundingBox_ = value;
        }
    }
    property String^ id {
        String^ get() {
            return id_;
        }
        void set(String^ value) {
            id_ = value;
        }
    }

};
4

1 回答 1

1

这通常通过以下方式完成safe_cast<T>

Vector^ asVector = safe_cast<Vector^>(theIVectorHandle);

有关详细信息,请参阅有关C++/CX 中的 Casting 的 MSDN 文章

于 2013-06-05T16:36:07.907 回答