摘要:
〇、建表数据 drop table if exists user_profile; CREATE TABLE `user_profile` ( `id` int NOT NULL, `device_id` int NOT NULL, `gender` varchar(14) NOT NULL, `a 阅读全文
摘要:
给你一个字符串 s 和一个字符规律 p,请你来实现一个支持 '.' 和 '*' 的正则表达式匹配。 '.' 匹配任意单个字符'*' 匹配零个或多个前面的那一个元素所谓匹配,是要涵盖 整个 字符串 s的,而不是部分字符串。 来源:力扣(LeetCode)链接:https://leetcode-cn.c 阅读全文
摘要:
属于引用类型,在java.lang包下,类似的还有Integer、Character、Boolean、Math 常用方法: char charAt(int index)返回 char指定索引处的值。 int compareTo(String anotherString)按字典顺序比较两个字符串。in 阅读全文