摘要:
转自:https://www.runoob.com/w3cnote/cpp-func-pointer.html,写的非常好 1.函数指针 函数的函数名就是它的地址,存储在代码区。如同数组一样,数组的名字就是数组的起始地址。 定义: data_types (*func_pointer)( data_t 阅读全文
摘要:
转自:chatgpt 1.介绍 C++11 引入了 std::this_thread::sleep_for,它更加直观易用,不需要手动转换时间单位,可以接受以秒、毫秒、微秒等为单位的参数,使得代码更加可读且具备更好的可移植性。 例子: #include <iostream> #include <th 阅读全文
摘要:
转自:https://cplusplus.com/reference/iterator/advance/ 1.介绍 模板原型,第一个参数是迭代器,第二个参数是距离,移动迭代器指定距离。 template <class InputIterator, class Distance> void advan 阅读全文