Java工具包提供了强大的数据结构。在Java中的数据结构主要包括以下几种接口和类: 枚举(Enumeration) 位集合(BitSet) 向量(Vector) 栈(Stack) 字典(Dictionary) 哈希表(Hashtable) 属性(Properties) 以上这些类是传统遗留的,在J ...
分类:
编程语言 时间:
2021-07-05 18:06:34
阅读次数:
0
不要使用 + 和 fmt.Sprintf 操作字符串 不要使用 + 和 fmt.Sprintf 操作字符串,虽然很方便,但是真的很慢! 我们要使用 bytes.NewBufferString 进行处理。 基准测试如下: + func BenchmarkStringOperation1(b *test ...
分类:
其他好文 时间:
2021-07-05 18:05:25
阅读次数:
0
全局异常处理 @ControllerAdvice @RestController public class GlobalExceptionInterceptor { ? //Exception异常 @ExceptionHandler(value = Exception.class) @Respons ...
分类:
编程语言 时间:
2021-07-05 17:45:41
阅读次数:
0
https://www.it1352.com/1873377.html #!/bin/sh if [ -n "$TMUX" ]; then case "$1" in prod_*) tmux selectp -P bg=red ;; esac fi ssh "$@" tmux selectp -P ...
分类:
其他好文 时间:
2021-07-05 17:23:38
阅读次数:
0
通过application类中的main方法里面的run方法 @SpringBootApplication @ServletComponentScan(basePackages = "com.sp") //可以自动将写的servlet扫描进去 配置扫描的包 @MapperScan("com.sp.m ...
分类:
编程语言 时间:
2021-07-05 17:22:51
阅读次数:
0
编写引导类注意要标明注解 @SpringBootApplication SpringApplication.run(BootWeb01Application.class, args); 再编写main方法的时候使用run方法 起步依赖spring-boot-starter-parent 父工程,主要 ...
分类:
编程语言 时间:
2021-07-05 17:08:07
阅读次数:
0
@Test public void testTime() { var d1 = LocalDate.of(2021,1,1); var d2 = LocalDate.of(2021,7,2); Period p = Period.between(d1, d2); System.out.println ...
分类:
其他好文 时间:
2021-07-02 16:38:05
阅读次数:
0
打开,在cell中添加如下命令: %run name.py 然后运行cell 即(图文): ...
分类:
其他好文 时间:
2021-07-02 16:22:38
阅读次数:
0
一、多线程方法一(继承Thread类) package Demo01;//继承线程类Threadpublic class MyThread extends Thread{ //重写 run()方法 @Override public void run() { for (int i = 0; i < 2 ...
分类:
编程语言 时间:
2021-07-02 16:18:56
阅读次数:
0
检测Tomcat日志关键字异常 日常工作中经常会遇到Tomcat日志报特定的错误导致 Linux 服务器CPU暴涨,这时候需要重启应用才可以降下来 所以就需要写一个shell脚本,报出特定的错误就重启应用 shell脚本如下: [root@Mike-VM-Node-10_10_0_188 ~]# v ...
分类:
其他好文 时间:
2021-07-02 16:18:28
阅读次数:
0