• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Platform Independency

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Java is called as a platform Independent language, as when compiled it generates a class file which is in byte code. What is this byte code, what is the importance of this bytecode? And if by using this technique one can implement platform independency, why it is not getting implemented for all languages?
Can any one please clear my doubts....
 
author and iconoclast
Posts: 24207
46
Mac OS X Eclipse IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
To run a Java program, you need a JVM -- a "Java Virtual Machine". This is basically a simulation of an imaginary computer. The "machine language" of this imaginary computer is Java bytecode. This lets the same program -- the same bytecode -- run on any real computer for which a JVM has been implemented.
It's actually an old technique, and has been implemented for many other languages. The newest version is Microsoft's CLI, Common Language Interface (Infrastructure?), the core of .NET .
 
Sheriff
Posts: 7023
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
PRAVEEN M,
Welcome to JavaRanch!
We ain't got many rules 'round these parts, but we do got one. Please change your display name to comply with The JavaRanch Naming Policy. (Note that a single character last name is generally not enough.)
Thanks Pardner! Hope to see you 'round the Ranch!
 
Ranch Hand
Posts: 7729
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It is also interesting to note that the bytecode interpreted by the Java Virtual Machine can be produced by languages other than Java. See here for instance.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic