int CMath::QueryInterface( GUID iid, void ** ppiInterface )
{
if( iid == IID_IMath )
{
*ppiInterface = static_cast(this);
AddRef( );
}
...
中的this IMath *ppiInterface 和整個語句,具體指的是什麼?謝謝
QueryInterface有兩個參數,第二個參數用來存放所請求的接口的地址
*ppiInterface= static_cast(this);是給該請求的指針賦值
http://www.jb51.net/article/55883.htm
http://www.cnblogs.com/fangyukuan/archive/2010/06/02/1750377.html