最新 最热

【错误记录】Groovy 函数拦截调用 invokeMethod 导致栈溢出 ( java.lang.StackOverflowError )

使用 Groovy 函数拦截功能 , 定义 Groovy 类 , 实现 GroovyInterceptable 接口 , 并重写 invokeMethod 方法 , 在该方法中使用

2023-03-30
1

【错误记录】Groovy 运行报错 ( Exception in thread “main“ groovy.lang.MissingMethodException: No signature of )

一、报错信息在使用 Groovy 闭包时 , 会报如下错误 :Exception in thread "main" groovy.lang.MissingMethodException: No signature of method: Test$_main_closure3.call() is applicable......

2023-03-30
1

【Android 逆向】脱壳解决方案 ( DEX 整体加壳 | 函数抽取加壳 | VMP 加壳 | Dex2C 加壳 | Android 应用加固防护级别 )

DEX 整体加壳 就是将 完整的 DEX 文件 , 进行加密 , 只保留一个壳应用 , 应用执行时 , 壳应用解密 DEX 文件 , 然后执行解密后的 DEX 文件 ;

2023-03-30
1

【错误记录】Git 使用报错 ( error: The branch ‘feature1‘ is not fully merged. )

出现上述原因 , 是因为 feature1 分支创建后 , 没有进行合并 , 报上述错误 , 提示开发者是否要进行合并之后 , 再删除这个分支 ;

2023-03-30
1

【错误记录】Visual Studio 编译 C++ 代码报错 ( To disable deprecation, use _CRT_SECURE_NO_WARNINGS. )

这是在 Windows 中的 Visual Studio 中运行 C++ 程序中 , 如果程序中调用了 scanf、sprintf、strcpy、strcat 等方法 , 则会弹出上述错误 ;

2023-03-30
0

【C 语言】数组 ( 多维数组做函数形参退化为指针过程 | int array[2][3] -> int array[][3] -> int (*array)[3] )

一维数组 作为 函数参数时 , 会退化为指针 ; 解决方案是 传入 数组首地址 和 数组元素个数 ;

2023-03-29
0

【错误记录】Android Studio 创建报错 ( The length of the module location exceeds the limit of 100 characters. )

上述路径有 95 个字符 , 超过 100 个字符就无法创建新的 Module 工程 ;

2023-03-29
1