java.util.Scanner 类结构 public final class Scanner implements Iterator<String>, Closeable 构造方法 public Scanner(InputStream source) { this(new InputStream ...
分类:
其他好文 时间:
2020-10-21 20:36:17
阅读次数:
17
xpath(XML Path Language)是一门在XML和HTML文档中查找信息的语言,可以用来在XML和HTML文档中对元素和属性进行遍历。 XPath开发工具 1.Chrome插件XPath Helper。 2.Firefox插件Try XPath。 XPath 使用路径表达式来选取XMl ...
分类:
其他好文 时间:
2020-10-19 23:08:38
阅读次数:
52
Settings-Editor-File and Code Templates,选择 Python Script """ @author:$ @Description:描述 @file:$.py @time:\({YEAR}/\)/$ """ if name == 'main': pass ...
分类:
其他好文 时间:
2020-10-19 22:47:19
阅读次数:
22
数据源配置: spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driverspring.datasource.one.url=jdbc:mysql://127.0.0.1:3306/111?useUnicode=true&character ...
分类:
编程语言 时间:
2020-10-19 22:37:22
阅读次数:
27
给定一棵带点权的树,求满足点权极差不超过 $d$ 的连通子图的个数。$n,d \le 2000$。 ...
分类:
其他好文 时间:
2020-10-19 22:25:22
阅读次数:
18
<Switch> <Redirect exact={true} from="/" to="/home"></Route> <Route path="/home" component={HomeCom}></Route> <Route path="/monitor" component={Monito ...
分类:
其他好文 时间:
2020-10-19 22:16:06
阅读次数:
22
原文:https://www.pixelstech.net/article/1409966488-Different-types-of-keystore-in-Java JKS 机器翻译 Different types of keystore in Java -- JKS Java中不同类型的密钥库 ...
分类:
编程语言 时间:
2020-10-18 17:01:23
阅读次数:
36
1、导入hellodb.sql生成数据库(1)在students表中,查询年龄大于25岁,且为男性的同学的名字和年龄[root@centos7~]$systemctlstartmariadb[root@centos7~]$ss-tnlStateRecv-QSend-QLocalAddress:PortPeerAddress:PortLISTEN0100127.0.0.1:25*:*LISTEN05
分类:
数据库 时间:
2020-10-18 16:55:25
阅读次数:
29
一道面试题,问最后输出多少? public static void main(String[] args) { int a = 10; a = a++; // 输出10 //a = ++a; // 输出11 System.out.println(a); } 上述代码对应的字节码指令 ? 一个main ...
分类:
其他好文 时间:
2020-10-18 16:42:30
阅读次数:
20
localStorage设置key和内容 localStorage.setItem(key,JSON.stringify(value)); localStorage删除数据 localStorage.removeItem(key); 封装方法 set(key:string,value:any){ l ...
分类:
其他好文 时间:
2020-10-18 10:21:23
阅读次数:
36