摘要:
1. exeinfo查壳 2. 快捷键 f5:从流程图到伪C界面,tab空格切换界面,shift+f12查看程序字符串
阅读全文
摘要:
PianoRollFragment pianoRoll = new PianoRollFragment(); pianoRoll.show(getSupportFragmentManager(),"pianoRoll");
阅读全文
摘要:
//动态初始化 int[] array1 = new int[10];//前面的int[]为数组的类型,后面的int[10]为其能够存放的大小,array1为其数组名称 //静态初始化 int[] array2 = {1,2,3,4,5}; int[] array3 = new int[]{1,2,
阅读全文