List most Launch X431 Pro3 Frequently Asked Questions. 1. Error -5 (new adapters)Most likely your device uses the new security and work with it just d ...
分类:
其他好文 时间:
2020-05-31 19:29:29
阅读次数:
99
1 问题描述 使用OkHttp时报错: Caused by: java.lang.NoClassDefFoundError: kotlin/jvm/internal/Intrinsics at okhttp3@4.7.2/okhttp3.FormBody$Builder.add(FormBody.k ...
分类:
Web程序 时间:
2020-05-31 13:03:15
阅读次数:
87
一、建造者模式的定义 大家平时都去过肯德基用餐,那里不变的是炸鸡、汉堡、薯条、可乐等,这些都是一直都有的,不变的,而其它组合是经常变化的,从而生成不同的“套餐”罢了。而建造模式(Builder Pattern)是将一个复杂的对象的构建过程与它的表示分离,使得同样的构建过程构建不同的表示。使用建造者模 ...
分类:
其他好文 时间:
2020-05-30 20:11:12
阅读次数:
93
org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.apache.ibatis.builder.BuilderException: Parsing error was f ...
分类:
其他好文 时间:
2020-05-28 23:46:38
阅读次数:
105
public class demo { public static void main(String[] args) { //定义一个数组 int[] arr = {12, 15, 10, 18, 11}; System.out.println("排序前" + ArrayToString(arr)) ...
分类:
编程语言 时间:
2020-05-28 21:24:09
阅读次数:
76
Overlay 自定义弹窗 悬浮窗 意思是Overlay是一个Stack组件,可以将OverlayEntry插入到Overlay中,使其独立的child窗口悬浮于其它组件之上,利用这个特性可以自定义弹窗或者悬浮窗 OverlayEntry entry = OverlayEntry(builder: ...
分类:
其他好文 时间:
2020-05-27 20:07:46
阅读次数:
66
有的时候我们需要在自己创建的AOP上面使用接口,比如我使用了Aspect-Injector,Aspect-Injector的自定义切面继承了Attribute,没办法在构造函数注入,这时候就可以用到依赖注入注册后的实例了。 新建一个类,类里面有一个静态的ILifetimeScope来保存注入后的实例 ...
分类:
Web程序 时间:
2020-05-27 18:29:12
阅读次数:
172
1.为什么要有Stringbulider 2.StringBulider构造方法 3.StringBulider添加和翻转方法 public static void main(String[] args) { // public StringBuilder append(任意类型):添加数据并返回对 ...
分类:
其他好文 时间:
2020-05-26 18:26:50
阅读次数:
48
Go中可以使用“+”合并字符串,但是这种合并方式效率非常低,每合并一次,都是创建一个新的字符串,就必须遍历复制一次字符串。 建议: 1.10 之前版本使用 bytes.Buffer 1.10+ 以后版本使用 strings.Builder(Go1.10以后出现的) package main impo ...
分类:
其他好文 时间:
2020-05-25 19:34:46
阅读次数:
68
mysql慢查询日志的设置,用mysqlsla分析工具分析慢查询语句
分类:
数据库 时间:
2020-05-25 17:39:46
阅读次数:
71