随笔分类 - wheel
摘要:1、使用netsh interface ip add 添加IP的时候出现下面的提示,RPC服务器不可用。2、打开运行框;输入services.msc命令。3、来到服务器管理器,确认一下RPC服务是否开启状态,remote procedure call (rpc)。4、然后确认一下DCOM服务器是否开
阅读全文
摘要:1.VS 生成pdb 2.WinDbg 打开WinDbg,依次进行下面操作:File -> Symbol File Path -> 选择pdb文件存放路径。File -> Image File Path -> 选择exe文件存放路径。File -> Open Crash Dump -> 选择DMP文
阅读全文
摘要:1. //.h extern const char* tb_1[][2]; extern char tb_2[][2]; //.cpp printf(" %s \n",tb_1[2][1]); printf(" %c \n",tb_2[2][1]); tb_1[1][1] = "c"; tb_2[1
阅读全文
摘要:1 #include <iostream> 2 #include <iomanip> 3 #include <cstdio> 4 #include <fstream> 5 using namespace std; 6 7 // CPP program to demonstrate working o
阅读全文
摘要:#include <iostream> #include <string> #include <functional> //function bind #include <vector> #include <algorithm> //for_each #include <iomanip> //set
阅读全文