std::variant Post author:张拓 Post published:2024年 7月 24日 Post category:c++/c++17 Post comments:0评论 类模板 std::variant 表示一个类型安全的联合体(以下称“变体”)。一个 std::variant 的实例在任… 继续阅读std::variant
linux下使用c++获取MAC和ip地址 Post author:张拓 Post published:2024年 7月 19日 Post category:c++ Post comments:0评论 #include <iostream> #include <string> #include &… 继续阅读linux下使用c++获取MAC和ip地址
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++中的逗号表达式
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绑定类的成员函数
qt托盘菜单半透明 Post author:张拓 Post published:2023年 4月 17日 Post category:qt Post comments:0评论 qt托盘菜单半透明 QMenu#toptoolbarmenu { padding: 10px 0; border-rad… 继续阅读qt托盘菜单半透明