240 发简信
IP属地:浙江
  • Resize,w 360,h 240
    预处理命令使用详解----#if、#endif、#undef、#ifdef、#else、#elif

    转自:https://www.cnblogs.com/lanhaicode/p/10546514.html 预处理命令 在接触#if、#unde...

  • C语言生成动态链接库以及调用方法

    生成方法(代码示例): .C文件: __declspec(dllexport) int mymax(int a,int b){ return a...

  • Map数据结构的练习

    ************************************************************************...

  • TCP双向通信

    socket通信(服务器端) #include #include<winsock2.h> #include #pragma comment(li...

  • 多线程练习(2018-09-18)

    要求:十个线程打印各自的进程号 #include #include #include <Windows.h> using namespace s...

  • 互斥锁练习(2018-09-18)

    要求:A线程和B线程同时工作,A、B线程打印一串字符串休息5秒后再次打印该字符串,在A线程打印的过程中,B线程不能打断A线程的打印信息 #inc...