decompile(动词):把已编译的程序(如可执行文件、字节码)逆向转换为较高层次的代码形式(通常是类似源代码的表示),用于理解、分析或调试;结果不一定等同于原始源代码。(也常用于指“反编译”)
/ˌdiːkəmˈpaɪl/
I decompiled the app to see how it handled passwords.
我对这个应用进行了反编译,看看它是如何处理密码的。
After the update broke our integration, the team decompiled the library, traced the changes, and rewrote the interface to restore compatibility.
更新导致我们的集成失效后,团队反编译了该库,追踪改动,并重写接口以恢复兼容性。
由前缀 **de-**(表示“逆向、去除”)+ compile(“编译”)构成,字面意思是“把编译过的东西逆过来处理”。随着软件工程与逆向分析的发展,该词在计算机领域固定为“反编译”。