03 2017 档案
摘要:CCP21.pdf 1 1 Introduction 1.1 1.1 ASAP The ASAP task force (Arbeitskreis zur Standardisierung von Applikationssystemen; Englishtranslation: Standardi
阅读全文
摘要:LDHX #0x0180:将0x180加载到HX寄存器中 TXS:将X寄存器的值给SP中 BSR *-113:SP=SP-2,PC=PC-113,在SP(17f)处存放PC(197f的下一个PC所运行的值)的值 即:PC=1981存放在17f,17e,sp=sp-2,pc=197f-113=190e
阅读全文
摘要:1 #include 2 #include 3 4 using namespace std; 5 6 int main() 7 { 8 int *a = (int*)malloc(4); 9 a[0] = 4; 10 int *b = a; 11 12 free(b);//释放了b,a也就释放了 13 return 0; 1...
阅读全文
摘要:1 #include 2 using namespace std; 3 4 class Base 5 { 6 private: 7 int i; 8 protected: 9 int j; 10 public: 11 int k; 12 }; 13 class Child:public Base//对public继承 14 { 15 publi...
阅读全文
摘要:1 #include 2 using namespace std; 3 4 class Base 5 { 6 public: 7 Base() 8 { 9 cout << "base" << endl; 10 } //Base的构造函数 11 virtual ~Base() //Base的析构函数 ...
阅读全文
摘要:1 // sd.h : main header file for the SD application 2 // 3 4 #if !defined(AFX_SD_H__DB621B01_7480_4661_A977_D2FC564CCA3C__INCLUDED_) 5 #define AFX_SD_H__DB621B01_7480_4661_A977_D2FC564CCA3C__IN...
阅读全文
摘要:1:在调用OnNewDocument之后会在内部调用Serialize 2:在调用OnPenNewDoucment之后会在内部调用Serialize
阅读全文
摘要:#include using namespace std; class CTimeType//定义时间类 { int hour,minute,second; //成员变量 public: CTimeType(int h=12,int m=0,int s=0) ...
阅读全文
摘要:#include using namespace std; class A { public: void f() { cout f(); return 0; }
阅读全文

浙公网安备 33010602011771号