Advertisement
Guest User

1.Въведение в Java

a guest
Apr 14th, 2016
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. Въведение в Java
  2. In Java all public classes should stay in a file with the same name
  3.  
  4. Java programming language is:
  5. - Object-oriented
  6. - Type-safe
  7. - Good for large server-side projects
  8.  
  9. The Java platform consists of:
  10. - Java programming language
  11. - Java Virtual Machine (JVM) – environment for execution of Java code
  12. - Java API – powerful class library
  13. - Has the ability to run Java programs on any machine with JVM
  14.  
  15. JVM – Java Virtual Machine
  16. - Executes compiled Java code (bytecode)
  17. - Virtual environment for safe code execution
  18. - Similar to CLR in .NET
  19.  
  20. JRE – Java Runtime Environment
  21. - A runtime environment for Java-based software
  22. - JRE = JVM + Java API classes (standard Java libraries)
  23. - Similar to .NET
  24.  
  25. JDK – Java Development Kit
  26. - The development platform for Java developers
  27. - Consists of JRE + compilers + tools
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement