
C/C++/STL
文章平均质量分 51
风fly
近10年的C/C开发经验先后经历多种行业领域包括iOS产品研发PDA软件的开发和测试杀毒软件的迁移大型CMS WEB应用的开发 Microsoft VC Libraries MFC ATL STL CRT代码覆盖率测试 Windows CVisual Studio测试等项目 自07年从事项目经理的角色负责银行软件系统性能测试微软软件外包EndPlay内容管理CMS系统开发等等并承担CMS iOS客户端的开发工作. Blog就像是时间沙漏中的沙粒希望在这
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Steps to core dump the call stack of crashed ROS node
【代码】Steps to core dump the call stack of crashed ROS node。backtrace" or "bt" command原创 2022-10-05 05:03:58 · 744 阅读 · 0 评论 -
fatal error: Eigen/Geometry: No such file or directory 6 | #include <Eigen/Geometry>
fatal error: Eigen/Core: No such file or directory原创 2022-09-16 01:35:24 · 597 阅读 · 0 评论 -
uint32 yyyymmdd hhmmss 整形GMT时间 转化为ISO8601格式
#define _XOPEN_SOURCE#include <iostream>#include <iomanip>struct GlobalTime final{ uint32_t gpsDate; uint32_t gpsTime;};// Output the time GMT data time as ISO8601 format. The format is as follows: YYYY-MM-DDTHH:mm:ss Zinline ...原创 2021-05-28 09:50:30 · 557 阅读 · 0 评论 -
c++ new features since c++11
1. auto two examples of usage: a. shorter the code. std::map<std::string, std::vector<int>> map; for(auto it = begin(map); it != end(map); ++it) { } b. return type of functiontemplate <typename T1, typename ...原创 2021-02-08 13:55:51 · 144 阅读 · 0 评论 -
undefined reference to pthread_create
./libcurl.a(libcurl_la-curl_thread.o): In function 'Curl_thread_create' : curl_threads.c:(.text+0x7c):undefined reference to 'pthread_create'...collect2: error: ld returned 1 exit status.Searched a lot, and finally fixed my problem by adding "-lpthre原创 2020-06-17 13:47:49 · 354 阅读 · 0 评论 -
求tree中节点之间路径总和等于给定数值的算法
原题目:Given a tree (any tree, in this code, i define the tree as a binary tree) and a integer value, please calculate and print the nodes if their total case is equal the given integer value. Fg.原创 2012-06-09 15:31:01 · 905 阅读 · 0 评论 -
Cannot find the dll error in my IIS server.
In my C# web project, a ESLibrary.dll file was included to provide a calculation service. But when I come to this page where the library is called. It always pops error that this dll file cannot fou原创 2013-10-23 20:04:31 · 1053 阅读 · 0 评论