61~70关61关condensecondense [con·dense || k?n'dens] v. 使浓缩, 缩短, 摘要; 浓缩, 凝结dense [dens] adj. 密集的; 浓厚的(a) very heavy in relation to each unit of volume 密度 ...
分类:
其他好文 时间:
2021-02-19 13:30:48
阅读次数:
0
/** * 方法一:使用indexOf和subString方法,循环判断并截取 */ public static void getStrCount1(String str, String con) { int count = 0; while (str.indexOf(con) >= 0) { // ...
分类:
编程语言 时间:
2021-02-17 14:46:16
阅读次数:
0
constexpr 是什么? 关键字 constexpr (constant expression) 是在 C11 中引入的,并且在 C14 中进行了优化。 constexpr 和 const 一样可以用来修饰变量:试图修改 constexpr 变量时,编译器将会报错。 不同于 const, con ...
分类:
其他好文 时间:
2021-02-09 12:40:58
阅读次数:
0
Spring常用注解 本文枚举一些常用的SpringBoot开发注解,希望能帮助读者在SpringBoot开发中正确地使用注解。 @Spring Application 主程序注解,spring框架的main函数自带注解。一般不需要开发人员操作,Spring Initializer会写好。 @Con ...
分类:
编程语言 时间:
2021-02-06 12:01:01
阅读次数:
0
Docker 入门到精通 123456789101112131415161718192021222324 """1)docker就是Linux上及其轻量的虚拟机2)虚拟机是存在宿主系统中,通过镜像给宿主系统拓展子系统的(一个镜像理论上可以做n个子系统)3)两个特别重要的概念 image:镜像 con ...
分类:
其他好文 时间:
2021-01-25 10:59:26
阅读次数:
0
深度优先搜索的代码: public class DepthFirstSearch { private boolean[] marked; // marked[v] = is there an s-v path? private int count; // number of vertices con ...
分类:
其他好文 时间:
2021-01-21 10:29:02
阅读次数:
0
1.校验QQ号 console.log(/^[1-9]\d{4,10}$/); // 严格控制5~11位console.log(/^[1-9]\d{4}$/); // 不小于5位即可 2.用户名 console.log(/^[\u4e00-\u9fa5a-zA-Z0-9_]{2,18}$/);con ...
分类:
编程语言 时间:
2021-01-18 10:45:03
阅读次数:
0
React-Router 最新的路由的版本是5.2的版本。里面的话提供了一些包 所在在做web端开发的时候只需要安装react-router-dom就可以了,因为内部已经包含了最核心的内容了。 react-router | react-router-native | react-router-con ...
分类:
其他好文 时间:
2020-12-28 11:30:29
阅读次数:
0
Problem Description Given a nn matrix Cij (1<=i,j<=n),We want to find a nn matrix Xij (1<=i,j<=n),which is 0 or 1. Besides,Xij meets the following con ...
分类:
其他好文 时间:
2020-12-21 12:00:49
阅读次数:
0
function test($str,$con='utf-8'){ $result = ''; $len = strlen($str); for($i=$len-1;$i>=0;$i--){ $result .= mb_substr($str,$i,1,$con); } return $result ...
分类:
其他好文 时间:
2020-12-09 12:04:18
阅读次数:
6