12 2020 档案
摘要:sprintf、snprintf、strcpy、strncpy、memcpy 函数 sprintf函数 int sprintf(c...
阅读全文
摘要:在cpp中,普通数组是固定长度的,标准库类型vector可理解为可扩充数组(即长度不固定)。 编译参数:g++ --std=cpp2...
阅读全文
摘要:用法: std::ios::sync_with_stdio(false);std::cin.tie(nullptr); 解释:这...
阅读全文
摘要:lambda lambda 表达式(通常称为 " lambda")是一种在被调用的位置或作为自变量传递给函数的位置定义匿名函数对象...
阅读全文
摘要:std::bind(callable, arg_list) #include #include #include #include...
阅读全文