上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页
摘要: https://www.zhihu.com/question/421214887 1 void test(int); 2 int main(void){ 3 void (*fp)(int); 4 fp=test; 5 (*fp)(9); 6 7 fp(9); 8 return 0; 9 } 10 v 阅读全文
posted @ 2022-12-02 10:31 墨尔基阿德斯 阅读(102) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/still-smile/p/12092186.html 阅读全文
posted @ 2022-12-02 10:04 墨尔基阿德斯 阅读(4) 评论(0) 推荐(0) 编辑
摘要: https://seisman.github.io/how-to-write-makefile/overview.html https://www.cnblogs.com/cuckoos/articles/5049984.html 阅读全文
posted @ 2022-12-02 10:04 墨尔基阿德斯 阅读(10) 评论(0) 推荐(0) 编辑
摘要: https://cloud.tencent.com/developer/article/1703257 https://cloud.tencent.com/developer/article/2045107?from=article.detail.1703257 阅读全文
posted @ 2022-12-02 10:03 墨尔基阿德斯 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 获取系统当前时间 在调试、日志输出、代码优化时,我们常常需要获得系统的时间。在一些性能要求高的代码优化时,对时间的精确度还比较高。在网上找不高质量的代码,便自己研究了一下,代码如下(能满足跨平台的要求,单位精确到微秒): 1 #ifdef _WIN32 2 #include <windows.h> 阅读全文
posted @ 2022-11-28 15:11 墨尔基阿德斯 阅读(77) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/jiu0821/p/6424951.html 阅读全文
posted @ 2022-11-27 21:49 墨尔基阿德斯 阅读(4) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_31473097/article/details/121412135 阅读全文
posted @ 2022-11-23 16:36 墨尔基阿德斯 阅读(14) 评论(0) 推荐(0) 编辑
摘要: https://github.com/512Community/threadpool https://zhuanlan.zhihu.com/p/504611524 https://github.com/Pithikos/C-Thread-Pool https://github.com/xuwenin 阅读全文
posted @ 2022-11-16 09:45 墨尔基阿德斯 阅读(5) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/347507399 阅读全文
posted @ 2022-11-14 21:12 墨尔基阿德斯 阅读(83) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/424326887 阅读全文
posted @ 2022-11-14 10:37 墨尔基阿德斯 阅读(10) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页