
c++入门系列
c++入门系列
hehui0921
这个作者很懒,什么都没留下…
展开
-
core_jni_helpers.h
【代码】core_jni_helpers.h。原创 2024-10-15 14:38:16 · 139 阅读 · 0 评论 -
C++ random number
C++ random number原创 2024-07-16 17:01:44 · 388 阅读 · 0 评论 -
libevent 01
libevent 01原创 2024-07-16 15:29:28 · 212 阅读 · 0 评论 -
gdb info args
gdb info args原创 2024-07-16 11:32:22 · 158 阅读 · 0 评论 -
C++ core dump
C++ core dump原创 2024-07-16 10:13:40 · 199 阅读 · 0 评论 -
c++ libcap cap_get_proc
c++ libcap cap_get_proc原创 2024-07-14 16:36:35 · 274 阅读 · 0 评论 -
c++ libusb 01
c++ libusb 01原创 2024-07-14 11:20:06 · 167 阅读 · 0 评论 -
C++ std::bind
C++ std::bind原创 2024-07-07 15:56:24 · 119 阅读 · 0 评论 -
the use of {} in c++ function
the use of {} in c++ function原创 2024-07-07 11:46:47 · 195 阅读 · 0 评论 -
lvalue references in c++
lvalue references in c++原创 2024-07-07 10:25:57 · 110 阅读 · 0 评论 -
c++ move constructor
c++ move constructor原创 2024-07-07 09:51:08 · 123 阅读 · 0 评论 -
C++ Copy Constructor
C++ Copy Constructor原创 2024-07-06 19:21:17 · 104 阅读 · 0 评论 -
C++ std::queue
C++ std::queue原创 2024-07-06 18:27:21 · 131 阅读 · 0 评论 -
C++ std::stringstream
C++ std::stringstream原创 2024-07-06 16:48:43 · 282 阅读 · 0 评论 -
C++ std::string_view
C++ std::string_view原创 2024-07-06 16:17:20 · 152 阅读 · 0 评论 -
C++ default keyword
C++ default keyword原创 2024-07-06 16:10:26 · 133 阅读 · 0 评论 -
c++ lambda
c++ lambda原创 2024-07-06 14:18:26 · 126 阅读 · 0 评论 -
what is FenceTime?
what is FenceTime?原创 2024-07-02 15:56:40 · 124 阅读 · 0 评论 -
System tracing perfetto
System tracing perfetto原创 2024-07-02 10:52:19 · 175 阅读 · 0 评论 -
poll poll
poll原创 2024-06-28 15:23:00 · 131 阅读 · 0 评论 -
How to use lock_guard in C++
How to use lock_guard in C++原创 2024-06-19 10:28:38 · 218 阅读 · 0 评论 -
std::list::const_iterator的使用
std::list::const_iterator 是 C++ STL 中用来迭代访问 std::list 容器中元素的一个常量迭代器类型,它只能用来读取容器中的元素,而不能修改或删除它们。std::list 是双向链表容器,它可以高效地在头尾进行插入和删除操作,并且支持快速的迭代器遍历。原创 2023-05-29 10:15:48 · 365 阅读 · 0 评论 -
c++中 std::list 与 std::vector的区别
顺序存储和链式存储:std::vector 内部使用数组实现,将元素存储在连续的内存空间中;而 std::list 内部使用链表实现,每个元素可以分布在内存中的任意位置。原创 2023-05-22 15:41:02 · 1055 阅读 · 0 评论 -
c++ std::unique_lock的递归锁定机制
std::unique_lock的递归锁定机制原创 2023-05-20 17:38:47 · 533 阅读 · 0 评论 -
c++ std::unique_lock的递归锁定机制
std::unique_lock的递归锁定机制原创 2023-05-20 16:55:08 · 697 阅读 · 1 评论 -
std::bind的原理
std::bind的原理原创 2023-05-20 16:27:44 · 732 阅读 · 0 评论 -
std::ostringstream 使用
std::ostringstream 使用原创 2023-04-02 23:02:35 · 162 阅读 · 0 评论 -
c++ std::function的使用
c++ std::function的使用原创 2023-03-28 12:02:01 · 95 阅读 · 0 评论 -
std::condition_variable 的使用
std::condition_variable 的使用原创 2023-03-27 22:07:09 · 76 阅读 · 0 评论 -
c++ 线程同步之 std::condition_variable的使用
c++ std::condition_variable的使用原创 2023-02-14 11:16:24 · 109 阅读 · 0 评论 -
C++运算符重载
C++运算符重载原创 2022-12-28 10:24:39 · 61 阅读 · 0 评论 -
c++ operator bool()的使用
c++ operator bool()的使用原创 2022-12-28 09:57:17 · 440 阅读 · 0 评论 -
std::ostringstream的使用
std::ostringstream的使用原创 2022-12-20 20:05:01 · 292 阅读 · 0 评论 -
C++ queue 入门
C++ queue 入门原创 2022-12-18 14:08:57 · 87 阅读 · 0 评论 -
C++单元测试gtest入门
C++单元测试gtest入门原创 2022-12-18 13:55:00 · 396 阅读 · 0 评论 -
C++ deque入门
C++ deque入门原创 2022-12-18 12:53:21 · 54 阅读 · 0 评论 -
C++ optional用法入门
C++ optional用法入门原创 2022-12-18 12:02:13 · 739 阅读 · 0 评论 -
c++写入文件fstream的用法
c++写入文件fstream的用法原创 2022-12-16 14:00:39 · 377 阅读 · 0 评论 -
binder 设置线程数BINDER_SET_MAX_THREADS
binder 设置线程数BINDER_SET_MAX_THREADS原创 2022-12-14 12:25:03 · 335 阅读 · 0 评论 -
__attribute__((packed))的使用
__attribute__((packed))的使用原创 2022-12-14 11:36:01 · 101 阅读 · 0 评论