摘要:
上次写给一个朋友看的。#include <iostream>using namespace std;struct Test{Test& operator ( ) ( ){cout << "当";return *this;}};int main(){Test () () () () () () () () () ();cout << endl;cout &... 阅读全文
摘要:
看下面的输出就知道,其实就是定义了一个Delegate<void(int,int)>:1>c:\documents and settings\administrator\my documents\visual studio 2005\projects\delegate\delegate\call.h(74) : error C2752: 'Delegate<T>' :... 阅读全文