一、dex2jar https://sourceforge.net/projects/dex2jar/files/ dex2jar 下载兼容 Mac 和 Windows,执行需要 JRE 环境。我这里以 Mac 环境示例 下载后解压如上图 cd 进目录 然后 chmod u+x ./dex2jar- ...
分类:
编程语言 时间:
2020-06-22 13:16:24
阅读次数:
212
1089 Insert or Merge (25分) According to Wikipedia: Insertion sort iterates, consuming one input element each repetition, and growing a sorted output l ...
分类:
其他好文 时间:
2020-06-21 20:03:52
阅读次数:
45
6、依赖注入(DI) 依赖注入(Dependency Injection,DI) 依赖 : 指 bean 对象的创建依赖于容器,bean 对象的依赖资源。 注入 : 指 bean 对象中的所有属性由容器来注入 6.1 构造器注入 之前的案例已经使用 6.2 set 方式注入【重点】 6.2.0 环境 ...
分类:
编程语言 时间:
2020-06-20 21:41:12
阅读次数:
70
#include<vector> //创建容器 vector <int> v1; v1.push_back(1); v1.push_back(2); v1.push_back(3); v1.push_back(4); // 第一种遍历方式 //vector<int> ::iterator start ...
分类:
编程语言 时间:
2020-06-20 11:18:30
阅读次数:
69
1086 Tree Traversals Again (25分) An inorder binary tree traversal can be implemented in a non-recursive way with a stack. For example, suppose that wh ...
分类:
其他好文 时间:
2020-06-19 23:19:08
阅读次数:
62
U3D文档释义: SetPass:The number of rendering passes. Each pass requires Unity runtime to bind a new shader which may introduce CPU overhead Batches:“Batch ...
分类:
编程语言 时间:
2020-06-18 21:47:58
阅读次数:
78
/* 浏览记录按日期分组 */function groupVisit($visit){ $curyear = date('Y'); $visit_list = []; foreach ($visit as $v) { if ($curyear == date('Y', $v['create_time ...
分类:
其他好文 时间:
2020-06-18 21:20:04
阅读次数:
58
Given the array candies and the integer extraCandies, where candies[i] represents the number of candies that the ith kid has. For each kid check if th ...
分类:
其他好文 时间:
2020-06-18 13:17:39
阅读次数:
65
axios请求封装 function http(config) { // axios的默认配置 如果时get 参数需要放到 params // 如果是post 参数需要放到 data var myConfig = { url: config.url, method: config.method, h ...
分类:
移动开发 时间:
2020-06-17 20:13:41
阅读次数:
74
/** * Notes:省市级联动 * Created by xxg@seabig.cn * Date: 2020/6/4 * Time: 17:24 */ public function getCityData() { $cityList = $this->getAll(array("pid = ...
分类:
Web程序 时间:
2020-06-17 18:26:50
阅读次数:
150