Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果机器使用JVM中1字节的指令代码(称为字节码)。有多少(指令/字节码)是可能的?
(不是家庭作业问题。准备面试。)
根据Wikipedia,有 255 个可能的操作码,因为操作码的大小是一个字节(因此,有 256 个可能的值),但值 0xCA 是为调试器断点保留的,剩下 255 个用于“真实”操作码,其中 0x00 到 0xC9,当前分配了 0xFE 和 0xFF。