Posts

Showing posts from June, 2017

Java Byte Code Implementation

Image
The Insider Story of JVM The Main Actor Recently I want to get more specialized knowledge about Java. Because every day we want to gain more generalized knowledge. So after few tries I found a good source of knowledge .So I write this post to share the knowledge which I learned. Credits goes to This blog post is basically written on the extracted knowledge from  Ted Neward lecture about Java Byte Code Instruction set. This also could be explain as Java Byte Code implementation . As a programmer, on any language it's good to have a understanding of whats happening under one it. In here we don't dig deep in.This explanation mainly concerned about Byte Code Instructions sets and the tools for it. History Smalltalk Virtual Machine Called StrongTalk. Another company purchased it and improved the VM and got Hotspot the " Java Virtual Machine" (JVM). Because JAVA intend as a embedded language which runes on embedded devices. Reasons to build the ...