logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

C++ algorithm中常用函数——判断容器中是否包含某个值

假设定义类class Student{public:Student(string name, int age) :m_name(name), m_age(age) {}bool operator==(const Student &obj) const{return this->m_age == obj.m_age;}...

到底了