摘要:
#include #include #include int main(int argc, char **argv) { char *ptr, **pptr; struct hostent *hptr; char str[32]; ptr = argv[1]; hptr = gethostbyname(ptr); if(NULL ... 阅读全文
摘要:
一、strtol long int strtol(const char *nptr, char **endptr, int base) strtol()会将nptr指向的字符串,根据参数base,按权转化为long int, 然后返回这个值。 阅读全文
摘要:
一、下载音频数据 1、解析URL,如https://resource.alilo.com.cn/res/24,6a59891ab368.mp3 1)resource.alilo.com.cn为主机名,需要解析成对应的ip地址,端口号默认是80 2、连接ip服务器,并发送http get请求(要熟悉h 阅读全文
摘要:
1、strdup和strndup 说明:strdup() 函数将参数 s 指向的字符串复制到一个字符串指针上去,这个字符串指针事先可以没被初始化。在复制时,strdup() 会给这个指针分配空间,使用 malloc() 函数进行分配,如果不再使用这个指针,相应的用 free() 来释放掉这部分空间。 阅读全文
摘要:
// 学校演讲比赛.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 // #include "pch.h" #include #include "string" #include "vector" #include "algorithm" #include "functional" #include "list" #include "iterator" #inc... 阅读全文
摘要:
1.业务使用main.cpp 2.string.h 3.string.cpp 阅读全文
摘要:
一、优先级队列priority_queue 最大值优先级队列、最小值优先级队列 阅读全文
摘要:
一、函数对象以及其特点 1、函数对象:在一个类里面实现()运算符重载; 2、函数对象的()的执行,很像一个函数//仿函数 3、函数对象的好处:函数对象属于类对象,能突破函数的概念,能保持调用状态信息,如:for_each算法中,函数对象做函数参数,函数对象做返回值 阅读全文