JAVA DP 反向: public final int maximalSquare(char[][] matrix) { int xLen = matrix.length, yLen = matrix[0].length, re = 0; int[][] cache = new int[xLen] ...
分类:
其他好文 时间:
2021-07-23 17:42:02
阅读次数:
0
// 复制文本内容 copy(data) { let url = data; // #ifdef APP-PLUS uni.setClipboardData({ data:url, success() { uni.showToast({ title: '复制成功', icon: 'none', du ...
分类:
移动开发 时间:
2021-07-22 17:32:52
阅读次数:
0
变量未定义时, 其被赋为undefined let aaa; console.log("undefined ...",undefined); console.log("aaa ...", aaa); if(aaa==undefined){ console.log("aaa == undefined" ...
分类:
其他好文 时间:
2021-07-21 17:40:09
阅读次数:
0
use crossbeam_channel::{Receiver, bounded}; use tokio::time::{Duration, delay_for}; #[tokio::main] async fn main() { let (s, r) = bounded(10); for i i ...
分类:
其他好文 时间:
2021-07-19 16:57:38
阅读次数:
0
(1)善于利用关键词。搜索的时候把形容词、副词砍掉,只留名词作为主干信息来搜索。 (2)搜索内容包含了2个以上关键词时,可以使用空格分隔。当搜索的内容只需包含多个关键词任意一个可以用竖线|。 (3)可以通过不同关键词组合,挖掘更多隐含信息。 (4)当搜索的内容不包含某些关键词,可以用减号“-”来避开 ...
分类:
其他好文 时间:
2021-07-19 16:51:45
阅读次数:
0
IOC 容器 一. IOC 底层原理 使用工厂模式+反射+xml的方式达到解耦合的目的,它们就是 IOC 的底层原理。 IOC 容器底层就是对象工厂。 Spring 提供两种 IOC 容器实现方法(两个接口): BeanFactory:IOC 容器基本实现,是 Spring 内部的使用接口,不推荐使 ...
分类:
其他好文 时间:
2021-07-19 16:31:43
阅读次数:
0
FastAPI https://fastapi.tiangolo.com/#performance FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.6+ based ...
分类:
编程语言 时间:
2021-07-16 17:45:01
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>标题</title> </head> <body> <script> /* 自定义对象({}),可以看成是python中的字典,但是js中的自定义对象要比pyt ...
分类:
Web程序 时间:
2021-07-14 18:51:37
阅读次数:
0
用法: drop table 表名 truncate 表名 delete from 表名 区别: 1、drop table 作用是删除表,表内容和表结构一起删除。 2、truncate 作用是从数据库中清除一个表,表结构还保留。 3、delete from 作用是删除表内容,还保留表结构,通常结合w ...
分类:
数据库 时间:
2021-07-12 17:45:11
阅读次数:
0
react哲学:state元数据的不可变性 只允许使用setstate修改数据, 尽量生成新数据而(如果是引用数据,可以进行浅拷贝,然后再赋值) 太懒,索性截个图: 由上图看到,一个书籍列表,分别有几个功能:单个书籍数量的增减,点击操作时会移除一整项,下方会有总价即时更改。 为了不违反react哲学 ...
分类:
其他好文 时间:
2021-07-06 16:25:11
阅读次数:
0