摘要:
类成员函数指针 指向类中的非静态成员函数 #include <iostream> #include <functional> #include<algorithm> #include <vector> using namespace std; //函数指针指向一个类成员函数 class A { pu 阅读全文
摘要:
主要说明const 类成员函数调用方式 以及this指针对应变化 SimpleConst.h #pragma once class A { public: int a; int b; const int c; A(int i, int j, int t); //const 成员函数 void Pri 阅读全文
摘要:
五种委托形式 1.单播委托 2.多播委托 3.事件 4.动态单播委托 5.动态多播委托 DelegateCombinations.h /** Declares a delegate that can only bind to one native function at a time */ #def 阅读全文