摘要:
语言特性 常见数据结构 阅读全文
摘要:
head ^ ~: http://wkevin.github.io/GitChat/gitchat.html#head和head是啥 用树举例,在我看来^n是(同一高度)父叔节点间的切换,~n是沿着默认路径向前进,n默认为1 git commit -ament 修改提交(上一次提交不push远程仓库 阅读全文
摘要:
实习用到meilisearch 看doc时看到post put实操 也就是说post常用作全局更新,put用作局部更新 阅读全文
摘要:
import sys from cmath import * line = sys.stdin.readline().strip() vs = list(map(int, line.split())) n, m, k = vs[0], vs[1], vs[2] line = sys.stdin.re 阅读全文
摘要:
import sys line = (sys.stdin.readline().strip()) nums = line.split() num1, num2 = nums[0], nums[1] def product(bit: str, x: str): ans = '' c = 0 b = i 阅读全文
摘要:
import sys from math import inf line = sys.stdin.readline().strip() vs = list(map(int, line.split())) n, k = vs[0], vs[1] line = sys.stdin.readline(). 阅读全文
摘要:
JAVA基础特性:多态,继承,封装 本文补充完善一下继承的相关知识 基础类间的继承 子类对父类函数的重写(Override) 有参无参构造函数的继承调用 public class Heritage { class A{ A(){ System.out.println("this is constru 阅读全文
摘要:
固有印象:静态内部类不可以被实例化 是错的! 看AQS Abstract Queen Synchronization 时发现其静态内部类Node,对自己进行实例化。遂查询资料并动手实践,发现静态类是可以被实例化的,但是一般情况下没必要。new一个静态内部类对象,获得对其引用,不用先堆外部类进行实例化 阅读全文
摘要:
前置内容: sql优化 数据库索引 得出,使用模糊搜索前置%时,索引可能失效,故要使用全文索引。参考 简单介绍下,全文索引,以MySQL为例。参考 阅读全文
摘要:
ref:【java】static方法与连续调用 1 public class ReturnThis { 2 3 public int age; 4 5 public ReturnThis grow() { 6 age++; 7 return this; // 返回调用该方法的对象 8 } 9 10 阅读全文