数组声明创建 获取数组的长度:数组名.length 增强型for循环 int [] arrays = {1,2,3,4,5}; for (int array : arrays) { System.out.println(array); 数组的声明 dataType[] arrayRefVar; // ...
分类:
编程语言 时间:
2021-03-08 13:17:19
阅读次数:
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
今天练习数组发现一个关于数组的小练习,记录一下; `public class ArrayPrintTest { public static void main(String[] args) { int[] arr = new int[]{1,2,3}; System.out.println(arr) ...
分类:
编程语言 时间:
2021-03-08 13:04:49
阅读次数:
0
方法是语句的集合,在一起执行一个功能。 System.out.printIn() System是一个类,out是一个具体对象,printIn()是一个方法。 方法包含在类或者对象中,在其他地方可以被引用。 原子性:原则上一个方法只做一个功能。 public static void main(Stri ...
分类:
编程语言 时间:
2021-03-06 15:03:45
阅读次数:
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
1、显示/etc目录下,以非字母开头,后面跟了一个字母以及其它任意长度任意字符的文件或目录 lime@ubuntu1804:/etc$ sudo touch 123abc.txt lime@ubuntu1804:/etc$ ls /etc/[^[:alpha:]]* /etc/123abc.txt ...
分类:
系统相关 时间:
2021-03-06 14:49:53
阅读次数:
0
The magic shop in Mars is offering some magic coupons. Each coupon has an integer N printed on it, meaning that when you use this coupon with a produc ...
分类:
其他好文 时间:
2021-03-06 14:44:48
阅读次数:
0
一、题目描述 给定一个数字,我们按照如下规则把它翻译为字符串:0 翻译成 “a” ,1 翻译成 “b”,……,11 翻译成 “l”,……,25 翻译成 “z”。一个数字可能有多个翻译。请编程实现一个函数,用来计算一个数字有多少种不同的翻译方法。 示例 1: 输入: 12258输出: 5解释: 122 ...
分类:
其他好文 时间:
2021-03-06 14:40:20
阅读次数:
0
利用循环打印出三角形 public class Demo13 { public static void main(String[] args) { for (int i = 1; i <=5; i++) { for (int d = 5;d>=i;d--){ System.out.print(" " ...
分类:
编程语言 时间:
2021-03-06 14:31:15
阅读次数:
0