Java中又两种线程: 用户线程:普通的线程; 守护线程:又可叫做后台线程,如垃圾回收线程。一般是死循环执行,等到所有的用户线程结束,守护线程就结束。 如:我们需要每天的00:00就进行数据的备份,这个时候我们就需要一个定时器线程,并且将该定时器线程设置为守护线程。 1.守护线程 守护线程是一直执行 ...
分类:
编程语言 时间:
2021-02-24 13:13:36
阅读次数:
0
1.泛型继承BaseAdapter public class MyAdapter<T> extends BaseAdapter { private Context mContext; private LinkedList<T> mData; public MyAdapter() { } public ...
分类:
其他好文 时间:
2021-02-18 13:03:00
阅读次数:
0
基于平衡二叉树实现Set public class AVLTreeSet<E extends Comparable<E>> implements ISet<E> { private AVLTree<E,Object> avl; public AVLTreeSet(){ avl = new AVLTr ...
分类:
其他好文 时间:
2021-02-17 14:54:37
阅读次数:
0
一、基础组件 export interface BaseProps { name: string; } export interface BaseState { age: number; } export class BaseComp<P extends BaseProps = any, S ext ...
分类:
其他好文 时间:
2021-02-15 11:51:28
阅读次数:
0
Thread //创建线程方式一:继承Thread类,重写run()方法,调用start开启线程 public class TestThread01 extends Thread { @Override public void run() { //run方法线程体 for (int i = 0; i ...
分类:
其他好文 时间:
2021-02-08 12:36:43
阅读次数:
0
FeignClient 默认的解析器: public static FeignException errorStatus(String methodKey, Response response) { // 这里做了处理 String message = format("status %s readi ...
分类:
编程语言 时间:
2021-02-03 11:08:33
阅读次数:
0
##架构图/类图 ##解析 ###1)接口定义 public interface SecurityManager extends Authenticator, Authorizer, SessionManager { Subject login(Subject var1, Authenticatio ...
分类:
其他好文 时间:
2021-02-02 11:05:27
阅读次数:
0
异常 try。。。。catch public class Demo02Exception { public static void main(String[] args) { //创建int类型的数组,并赋值 int[] arr = {1,2,3}; int e = getElement(arr,3 ...
分类:
编程语言 时间:
2021-01-27 14:06:09
阅读次数:
0
参考https://mp.weixin.qq.com/s?__biz=MzU0ODg2MDA0NQ==&mid=2247484626&idx=1&sn=6a584fde354797177f67d3adcaf786b2 首先配置好Mysql连接 'DB_TYPE' => 'mysql', // 数据库 ...
分类:
Web程序 时间:
2021-01-27 13:25:24
阅读次数:
0
public class ArrayQueue<T> extends AbstractList<T>{ //定义必要的属性,容量、数组、头指针、尾指针 private int capacity; private int T[] queue; private int head; private int ...
分类:
其他好文 时间:
2021-01-26 12:17:34
阅读次数:
0