optional (C++)
Gibt einen optionalen Parameter für eine Memberfunktion auf.
[optional]
Hinweise
Das Attribut optional C++ verfügt über die gleichen Funktionen wie das optional MIDL-Attribut.
Beispiel
Der folgende Code zeigt, wie optional möglicherweise verwendet wird:
// cpp_attr_ref_optional.cpp
// compile with: /LD
#include "unknwn.h"
[module(name="ATLFIRELib")];
[dispinterface, uuid("00000000-0000-0000-0000-000000000001")]
__interface IFireTabCtrl : IDispatch
{
[id(1)] long procedure ([in, optional] VARIANT i);
};
Anforderungen
Attribut-Kontext
Betrifft |
Schnittstellen Parametern |
Wiederholbar |
Nein |
Erforderliche Attribute |
None |
Ungültige Attribute |
None |
Weitere Informationen über das kontexte finden Sie unter Attribut-Kontexte.