摘要:
一、构建动态链接库(dll.dll dll.lib dll.h)说明:.dll 是在执行程序是调用 .lib 是在连接程序是调用 .h是在编译程序时调用 1.头文件(声明导入函数):_declspec(dllimport) int add(int a,int b);//(头文件不参加.dll文件的生... 阅读全文
摘要:
STL /C# /QT /Python 阅读全文
摘要:
// reading an entire binary file#include #include #include #includeusing namespace std;int main () { streampos size; char * memblock; char * ... 阅读全文
摘要:
0、头文件:#include; using namespace std;1、定义: vectorvec;2、迭代器vector::iterator it; vector::const_iterator it; vector::reverse_iterator it; vector::cons... 阅读全文
摘要:
c++网络通信(有待整理)链接:http://pan.baidu.com/s/1i3nMLKT 密码:ksi8c#网络通信(tcp/udp两部分)TCP发送端:using System;using System.Collections.Generic;using System.Linq;using ... 阅读全文