Partager via


ptr::ptr

Construit com::ptr pour encapsuler un objet COM.

ptr();
ptr(
   _interface_type * p
);

Paramètres

  • P
    Pointeur d'interface COM.

Notes

Le constructeur de sans argument assigne nullptr au handle d'objet sous-jacente.Les appels suivants à com::ptr valideront l'objet interne et échouent silencieusement jusqu'à ce qu'un objet est créé ou attaché réellement.

Le constructeur d'un argument ajoute une référence à l'objet COM mais ne libère pas la référence de l'appelant, l'appelant doit appeler Release sur l'objet COM d'abandonner vraiment le contrôle.Lorsque le destructeur des com::ptr est appelé il libère automatiquement ses références à l'objet COM.

Passer NULL à ce constructeur est identique à l'appel de la version de ce type argument.

Exemple

Cet exemple implémente une classe CLR qui utilise com::ptr pour encapsuler son objet d' IXMLDOMDocument de membre privé.Elle illustre l'utilisation des deux versions du constructeur.

// comptr_ptr.cpp
// compile with: /clr /link msxml2.lib
#include <msxml2.h>
#include <msclr\com\ptr.h>

#import <msxml3.dll> raw_interfaces_only

using namespace System;
using namespace System::Runtime::InteropServices;
using namespace msclr;

// a ref class that uses a com::ptr to contain an 
// IXMLDOMDocument object
ref class XmlDocument {
public:
   // construct the internal com::ptr with a null interface
   // and use CreateInstance to fill it
   XmlDocument(String^ progid) {
      m_ptrDoc.CreateInstance(progid);   
   }

   // construct the internal com::ptr with a COM object
   XmlDocument(IXMLDOMDocument* pDoc) : m_ptrDoc(pDoc) {}

   // note that the destructor will call the com::ptr destructor
   // and automatically release the reference to the COM object

private:
   com::ptr<IXMLDOMDocument> m_ptrDoc;
};

// use the ref class to handle an XML DOM Document object
int main() {
   IXMLDOMDocument* pDoc = NULL;

   try {
      // create an XML DOM document object
      Marshal::ThrowExceptionForHR(CoCreateInstance(CLSID_DOMDocument30, NULL, 
         CLSCTX_ALL, IID_IXMLDOMDocument, (void**)&pDoc));
      // construct the ref class with the COM object
      XmlDocument doc1(pDoc);

      // or create the class from a progid string
      XmlDocument doc2("Msxml2.DOMDocument.3.0");
   }
   // doc1 and doc2 destructors are called when they go out of scope
   // and the internal com::ptr releases its reference to the COM object
   catch (Exception^ e) {
      Console::WriteLine(e);   
   }
   finally {
      if (NULL != pDoc) {
         pDoc->Release();      
      }
   }
}

Configuration requise

fichier d'en-tête<msclr \ COM \ ptr.h>

Msclr::com deEspace de noms

Voir aussi

Référence

ptr::CreateInstance

ptr::~ptr

Autres ressources

membres PTR