logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

find()函数及其他常用函数总结

一:find()函数:第一种,algorithm头文件的find()。使用方法:find(begin,end,value),一般用容器.end()来判断查找成功与否。参数1 是容器或者数组的起始地址(容器.begin()或者数组名),也可以是任意地址,不非法即可;参数2是结束查找的地址(容器.end()或者数组名+长度),value是想要查找的字符或者字符串...

Have Fun with Numbers (玩数字) java

Notice that the number 123456789 is a 9-digit number consisting exactly the numbers from 1 to 9, with no duplication. Double it we will obtain 246913578, which happens to be another 9-digit number con

@Repository、@Service、@Controller、@Component和@Mapper

与@Component注解功能相同但意义不同的的还有其他三个注解:* @Repository:注解在Dao上* @Service:注解在Service上* @Controller:注解在处理器上在编程过程中尽量使用下面三个...

到底了