What you're describing is called a disassembler or decompiler. It is rarely useful for what you want it for, because the intent of the programmer expressed in variable, method, and class names - is mostly lost. This is somewhat less true for modern bytecode languages like Java and C#.
You ask for a decompiler. Please note decompiling is illegal in many juridictions. Also once you decompile you usually get very hard to read assembly code learning from which is problematic unless you have plenty of experience and know exactly what you're looking for.
发布评论
评论(3)
您所描述的称为反汇编程序或反编译程序。它很少能满足您的需要,因为程序员用变量、方法和类名表达的意图大部分都丢失了。对于 Java 和 C# 等现代字节码语言来说,情况不太如此。
What you're describing is called a disassembler or decompiler. It is rarely useful for what you want it for, because the intent of the programmer expressed in variable, method, and class names - is mostly lost. This is somewhat less true for modern bytecode languages like Java and C#.
你要求一个反编译器。请注意,反编译在许多司法管辖区都是非法的。此外,一旦反编译,您通常很难阅读汇编代码,除非您有丰富的经验并且确切地知道您在寻找什么,否则从中学习是有问题的。
You ask for a decompiler. Please note decompiling is illegal in many juridictions. Also once you decompile you usually get very hard to read assembly code learning from which is problematic unless you have plenty of experience and know exactly what you're looking for.
你需要一个反编译器来根据其编码语言查看dll和exe文件的代码。
例如:
Delphi Dll Decompiler
搜索合适的反编译器以获取代码。
You need to get a decompiler for viewing the code of dll and exe files based on the language its coded in.
example:
Delphi Dll Decompiler
search for an appropriate decompiler te get the code back.