IDA 调试安卓 工具: Nox IDA 进入Nox\bin目录 cd C:\Program Files (x86)\Nox\bin adb连接模拟器 nox_adb.exe connect 127.0.0.1:62001 上传ida 监听文件 adb push 'C:\Users\b\Deskto ...
分类:
移动开发 时间:
2020-09-17 16:19:30
阅读次数:
38
This锁和Class锁 This锁 接下来代码理解一下This锁: /** * @program: ThreadDemo * @description: This锁的实验 * @author: hs96.cn@Gmail.com * @create: 2020-09-06 */ public cl ...
分类:
其他好文 时间:
2020-09-17 16:11:06
阅读次数:
19
动态规划相关代码实现: 1、孩子有多像爸爸——最长的公共子序列 //program 4-1 #include <iostream> #include<cstring> using namespace std; const int N=1002; int c[N][N],b[N][N]; char s ...
分类:
编程语言 时间:
2020-09-16 12:22:41
阅读次数:
30
分治法代码实现 1、猜数游戏——二分搜索技术 //program 3-1 #include<iostream> #include<cstdlib> #include<algorithm> using namespace std; const int M=10000; int x,n,i; int s ...
分类:
编程语言 时间:
2020-09-16 12:21:41
阅读次数:
37
Recently I came across this very funny picture and I would like to share with you. This picture shows totally five different approaches to implement “ ...
分类:
其他好文 时间:
2020-09-08 20:39:18
阅读次数:
51
一、确保python已设置成系统环境变量 二、在python安装目录的Scripts目录下(如:C:\Program Files\Python37\Scripts),新建一个txt文件,内容如下: @echo off python -m robot.run %* 三、根据需要,将该文件重命名为:ro ...
分类:
其他好文 时间:
2020-09-07 18:59:33
阅读次数:
66
一,继续上一篇博客的扩展( Grpc+MagicOnion的学习和例子(一)),我们再服务端加入MagicOnion.Hosting包,如下 把startup的配置注释调,我们再program添加主机配置,如下 program using System; using System.Collectio ...
分类:
其他好文 时间:
2020-09-03 16:27:53
阅读次数:
50
In SAP note 1230076 “Generation of ABAP loads: Tips for the analysis”, a tool report RSDEPEND is introduced. It is explained in the note “An ABAP prog ...
分类:
其他好文 时间:
2020-09-02 16:48:52
阅读次数:
41
package LeetCode_264 import java.util.* /** * 264. Ugly Number II * https://leetcode.com/problems/ugly-number-ii/description/ * * Write a program to f ...
分类:
其他好文 时间:
2020-08-25 18:44:01
阅读次数:
53