TVSKIN源代码阅读日记(三)--- __declspec(property())……

Well, in msxml.tlh中可以看到如此类似的很多定义。为了搞清楚XML文件到底是怎么解析的。需要搞明白这些声明的含义。

__declspec(property(get=GetnodeName))
_bstr_t nodeName;

 

well, i look reference to the _declspec property in MSDN (web version). The digit i took from the web page is specific to microsoft visual studio 2005/.net framework 2.0.

Visual C++ language reference

Microsoft specific

This attribute be applied to non-static virtual data members in a class or structure definition. The compiler treats these virtual data members as data members by changing their reference into function calls.

__declspec( property ( get = get_func_name )) declarator
__declspec( property ( put = put_func_name )) declarator
__declspec( property ( get = get_func_name, put = put_func_name)) declarator

 

Remarks

when the compiler sees a data member declared with this attribute on the right of a member-selection operator (“.” or  “->”), it converts the operation to a get or put function, depending on whether such an expression is an l-value or r-value. In more complicated context, such as “+=”, a rewrite is performed by doing both get and put.

This attribute can also be used in the declaration of an empty array in a class or structure definition.

For example:

__declspec (property(get=GetX, put=PutX)) int x[];

The above statement indicates that x[] can be used with one ro more array indices. In this case, i=p->x[a][b] will be turned into i=p->GetX(a,b) and p->x[a][b]=i will be turned into p->PutX(a,b,i).

 

Example

// declspec_property.cpp
struct S {
   int i;
   void putprop(int j) { 
      i = j;
   }

   int getprop() {
      return i;
   }

   __declspec(property(get = getprop, put = putprop)) int the_prop;
};

int main() {
   S s;
   s.the_prop = 5;
   return s.the_prop;
}

 

 

_COM_SMARTPTR_TYPEDEF(IXMLDOMNode, __uuidof(IXMLDOMNode));

//_COM_SMARTPTR_TYPEDEF(Ix1, __uuidof(Ix1));展开的代码就应该是
//typedef _com_ptr_t< _com_IIID > Ix1Ptr;

 

中文解释就是定义了一个COM智能指针,指向接口的智能指针。

details about smart types technology article:

http://edndoc.esri.com/arcobjects/9.0/ArcGISDevHelp/DevelopmentEnvs/COM/VCpp/SmartTypes.htm

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值