
C++
C++学习
whuzhang16
同学,你这还要多看书啊
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Python调用C++
Boost.Python方式转C++为Python可调用原创 2022-07-19 17:00:24 · 549 阅读 · 0 评论 -
多线程死锁问题
留坑待填原创 2022-02-04 22:26:52 · 416 阅读 · 0 评论 -
clang-tidy
https://clang.llvm.org/extra/clang-tidy/https://www.bilibili.com/video/av96166240/原创 2022-02-04 22:25:39 · 1670 阅读 · 0 评论 -
c++11 时间与chrono 库
留坑待填原创 2022-01-20 14:24:31 · 266 阅读 · 0 评论 -
C++11之内存对齐
留坑待填原创 2022-01-20 11:40:51 · 387 阅读 · 0 评论 -
C++11之async 、std::future、 std::promise 和 std::packaged_task
留坑待填原创 2022-01-19 19:11:40 · 484 阅读 · 0 评论 -
C++11之std::condition_variable
留坑待填原创 2022-01-18 23:04:01 · 274 阅读 · 0 评论 -
C++11之std::atomic
留坑待填原创 2022-01-18 21:11:22 · 310 阅读 · 0 评论 -
C++11之返回值优化
留坑待填原创 2022-01-18 17:40:01 · 412 阅读 · 0 评论 -
C++11之 std::function()、 std::bind()、 std::placeholder()、 lambda
留坑待填原创 2022-01-18 09:58:59 · 255 阅读 · 0 评论 -
libpqxx 库安装&configure: error:Linking a call to libpq failed in C++, even though it succeeded in C.
参考了这篇libpqxx 库安装及使用 - 简书安装libpqxx,遇到报错信息:configure: error:Linking a call to libpq failed in C++, even though it succeeded in C. If yourC and C++ compilers are very different beasts, this may mean that we do not havethe right options for linking with原创 2021-12-28 15:56:50 · 1411 阅读 · 0 评论 -
2020-12-01
sudo apt-get install ros-melodic-ompl*sudo apt-get install libompl-dev ompl-demoshttps://blog.csdn.net/chengde6896383/article/details/88339643cp -rf/usr/include/eigen3/Eigen/usr/include/Eigen -R原创 2020-12-02 11:01:07 · 145 阅读 · 0 评论 -
C风格的字符和字符串
在C语言中,将字符串作为字符数组来处理。(C++中不是)。C语言规定了一个字符串结束标志,即'\0',程序在遇到第一个'\0'时即认为字符串结束。系统也会对字符串常量自动加上'\0'作为其结束符。虽然在定义字符数组时应保证数组长度大于字符串实际长度,但有了结束标识符,常常不指定数组长度。如char str[]="hello world";上述表达方式,系统会在末尾自动加上'\0'原创 2017-04-01 09:42:00 · 348 阅读 · 0 评论