android基础!普通二本的辛酸Android面试之路,知乎上转疯了! ...
分类:
移动开发 时间:
2021-03-09 12:56:26
阅读次数:
0
无向图 我们用邻接图来表示图 具体实现的代码 public class Graph { private final int V; private int E; private Bag<Integer>[] adj; public Graph(int V){ this.V = V; E = 0; ad ...
分类:
其他好文 时间:
2021-03-08 14:20:08
阅读次数:
0
queue //STL之queue用法 //实现先进先出 #include<stdio.h> #include<queue> using namespace std; int main() { //定义 queue<int> qu; //进队 qu.push(1); qu.push(2); qu.p ...
分类:
其他好文 时间:
2021-03-08 13:44:24
阅读次数:
0
async getHomes(item) { let temp = await http.getHome(); let type = []; this.content.push(type); this.show = type; for (var i = 0; i < temp.length; i++ ...
分类:
其他好文 时间:
2021-03-08 13:34:55
阅读次数:
0
Android开发快速上手!教你一种更清晰的Android架构!再不刷题就晚了! ...
分类:
移动开发 时间:
2021-03-08 13:27:57
阅读次数:
0
Android开发技巧!关于网络优化你必须要知道的重点,写给正在求职的安卓开发 ...
分类:
移动开发 时间:
2021-03-08 13:26:48
阅读次数:
0
安卓逆向脱壳实操app 抓包如图所示 base解码 经过定位确定在这儿 jadx ida中直接有导出函数 jstring __fastcall Java_com_goldze_mvvmhabit_utils_NativeUtils_encrypt(JNIEnv *a1, int a2, int a3 ...
分类:
移动开发 时间:
2021-03-08 13:05:54
阅读次数:
0
rope (类似于块状链表的结构) 需要增加的预处理指令: #include<ext/rope> using namespace __gnu_cxx; rope<int> rp; 基本操作: 在末尾插入 \(x\) : rp.push_back(x); 在 \(pos\) 处插入 \(x\) : r ...
分类:
其他好文 时间:
2021-03-06 15:01:46
阅读次数:
0
Android日志系统(logging system) 背景 不管是做Android应用还是做Android中间层和底层,在做一些调试工作的时候,使用adb logcat非常关键。特意学习了一下安卓的log系统。 adb logcat -v time -b all 原文(有删改)出处不详。 参考文档 ...
分类:
移动开发 时间:
2021-03-06 14:57:55
阅读次数:
0
根据视频教程来,在Android SDK里找到uiautomatorviewer.bat文件,双击打开,闪退 查看报错信息:去SDK路径下使用cmd打开,报错信息如下 这时去百度,报错信息与这个地址一模一样(https://blog.csdn.net/qq_42926114/article/deta ...
分类:
其他好文 时间:
2021-03-06 14:55:48
阅读次数:
0