2024年3月11日
摘要: DELIMITER $$ CREATE PROCEDURE GenerateBulkRandomData(IN max_records INT) BEGIN DECLARE current_record INT DEFAULT 1; DECLARE v_id INT DEFAULT 0; DECLA 阅读全文
posted @ 2024-03-11 23:15 外包搬砖人 阅读(14) 评论(0) 推荐(0) 编辑
2020年8月16日
摘要: 1.reducers是通过store和dispatch方法关联起来的,调用dispatch方法实际上会调用reducers方法,且传入的参数是action(包括actionType标识和参数) 2.如果多个reducers 通过 combineReducers 后,还是通过同一个store和disp 阅读全文
posted @ 2020-08-16 23:19 外包搬砖人 阅读(116) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>redux原理</ 阅读全文
posted @ 2020-08-16 16:08 外包搬砖人 阅读(169) 评论(0) 推荐(0) 编辑
2020年6月14日
摘要: https://blog.csdn.net/m0_37222670/article/details/72551688 https://blog.csdn.net/wsjzzcbq/article/details/94333962?utm_medium=distribute.pc_relevant.n 阅读全文
posted @ 2020-06-14 22:47 外包搬砖人 阅读(144) 评论(0) 推荐(0) 编辑
2020年5月7日
摘要: 饿汉单例为什么会立即加载:应该是 单例的那个类除了获取单例的方法以外,还有其他方法,我调用其他方法会引起这个单例的初始化.....而这个方法的功能暂时是不依赖该单例的创建的 阅读全文
posted @ 2020-05-07 22:37 外包搬砖人 阅读(98) 评论(0) 推荐(0) 编辑
2020年5月4日
摘要: 1.原子性 2.可见性 4.有序性 阅读全文
posted @ 2020-05-04 16:07 外包搬砖人 阅读(254) 评论(0) 推荐(0) 编辑
2020年4月23日
摘要: package wanjing; import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.re 阅读全文
posted @ 2020-04-23 23:45 外包搬砖人 阅读(1255) 评论(0) 推荐(0) 编辑
2020年4月15日
摘要: 详情见: https://blog.csdn.net/azhegps/article/details/63031562 阅读全文
posted @ 2020-04-15 22:27 外包搬砖人 阅读(946) 评论(0) 推荐(0) 编辑
摘要: package leo.wan.test.thread; public class TestDeath { public static void main(String[] args) { DeathWorker worker = new DeathWorker(); new Thread(){ @ 阅读全文
posted @ 2020-04-15 21:29 外包搬砖人 阅读(163) 评论(0) 推荐(0) 编辑
2020年3月24日
摘要: public static void batchInsert(List<Integer> ints,int count ) { int begin =0; int end = begin+count ; while (begin<=ints.size()-1){ List<Integer> inte 阅读全文
posted @ 2020-03-24 22:37 外包搬砖人 阅读(923) 评论(0) 推荐(0) 编辑