摘要: 工具:vs自带的developer command for VS2015命令 dumpbin /EXPORTS aaa.dll // 查看内部函数 dumpbin /DEPENDENTS aaa.dll // 查看相关依赖 阅读全文
posted @ 2021-11-26 15:33 泽良_小涛 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 在做DLL库的时候经常会通过printf打印一些调试信息,但是MFC项目引用后printf信息是无法输出到调试窗口的,网上一些说通过AllocConsole();打开命令窗口在VS2017中竟然不好用,最终经过网络寻找到可用方法: 1、在vs中打开你的解决方案。 2、鼠标移动到你的项目名称上,点击鼠 阅读全文
posted @ 2021-11-26 15:05 泽良_小涛 阅读(1126) 评论(0) 推荐(0) 编辑
摘要: 一个双色球的小例子: import random as rd# Press the green button in the gutter to run the script.if __name__ == '__main__': seqBlueList = ['01','02','03','04',' 阅读全文
posted @ 2021-11-26 13:53 泽良_小涛 阅读(35) 评论(0) 推荐(0) 编辑