python加锁 Post author:张拓 Post published:2023年 5月 18日 Post category:python Post comments:0评论 在多线程编程时,为了避免线程间的竞争和冲突,我们需要使用锁机制来保护共享资源。在Python中,可以使用threadin… 继续阅读python加锁
Lambda函数 Post author:张拓 Post published:2023年 5月 16日 Post category:c++ Post comments:0评论 Lambda函数是C++11引入的一个非常重要的特性,它允许我们在函数内部定义匿名函数并将其保存在变量中。使用Lambd… 继续阅读Lambda函数
std::put_time Post author:张拓 Post published:2023年 5月 16日 Post category:c++ Post comments:0评论 std::put_time 是一个 C++11 标准库函数,它可以将一个时间数据格式化为一个字符串,其原型如下: tem… 继续阅读std::put_time
可变参数模板日志类 Post author:张拓 Post published:2023年 5月 15日 Post category:c++ Post comments:0评论 下面是一个可变参数模板日志类的例子,示例代码中定义了一个名为Logger的类模板,它接受任意数量和类型的参数,并将它们格… 继续阅读可变参数模板日志类
C++ 可变参模板 Post author:张拓 Post published:2023年 5月 15日 Post category:c++ Post comments:0评论 C++ 可变参模板(Variadic Templates)是C++11中新增的特性,可以让我们定义可以接受任意数量和类型… 继续阅读C++ 可变参模板
C++中的逗号表达式 Post author:张拓 Post published:2023年 5月 15日 Post category:c++ Post comments:0评论 C++中的逗号表达式展开是一种特殊的技术,它可以帮助我们处理可变数量的参数列表。逗号表达式通常在函数调用和模板参数包展开… 继续阅读C++中的逗号表达式
python合并字典dict Post author:张拓 Post published:2023年 5月 12日 Post category:python Post comments:0评论 要将两个字典合并为一个,可以使用 update() 方法。以下是一个简单的示例: dict1 = {"a&qu… 继续阅读python合并字典dict
GPT-3.5 Post author:张拓 Post published:2023年 5月 10日 Post category:杂 Post comments:0评论 GPT-3.5是一个基于深度学习的自然语言处理模型,是GPT系列的最新版本。它是由OpenAI开发的,并在2021年6月… 继续阅读GPT-3.5
std::bind Post author:张拓 Post published:2023年 5月 10日 Post category:c++ Post comments:0评论 std::bind 是 C++11 提供的函数对象适配器,主要用于将函数和其它数据绑定在一起,生成一个新的可调用对象。它… 继续阅读std::bind
std::bind绑定类的成员函数 Post author:张拓 Post published:2023年 5月 10日 Post category:c++ Post comments:0评论 当然,std::bind除了绑定函数外,还可以绑定类的成员函数。下面是一个绑定类成员函数的例子: #include &l… 继续阅读std::bind绑定类的成员函数