07 2016 档案

摘要:使用MSXML.DLL读写XML; 文件顶部加入 #import "msxml3.dll"; using namespace MSXML2; //这两句作用是,在程序的文件夹下生成MSXML3.TLH和MSXML3.TLI两个文件; --------------------------------------------------------- 创建一个XML文件; ::CoI... 阅读全文
posted @ 2016-07-29 17:57 hellohyi 阅读(4028) 评论(0) 推荐(1)
摘要:1 vector::iterator result = find( L.begin( ), L.end( ), 1 ); //查找1 2 if ( result == L.end( ) ) //没找到 3 cout << "No" << endl; 4 else //找到 5 cout << "Yes" << endl; 6 7 } 阅读全文
posted @ 2016-07-18 17:14 hellohyi 阅读(25696) 评论(0) 推荐(0)
摘要:1 #pragma once 2 #include 3 #include 4 #include 5 6 using namespace std; 7 8 #define MEMORYSIZE 102400000 //每块内存的大小 9 10 struct MemoryAddr{ 11 string StrName; 12 LPVOID pBuffe... 阅读全文
posted @ 2016-07-15 16:02 hellohyi 阅读(5167) 评论(0) 推荐(0)