Please enable JavaScript.
Coggle requires JavaScript to display documents.
Java - Coggle Diagram
Java
Java 8
Java EE (J2EE)
build on top of java SE platform
frameowrk
contains things
libraries
?
API
?
make large-scale enterprise java dev easier
Java SE
programming language
uses by many programmers
friendly syntax
object-oriented features
memory management
portability
write-once/run anywhere
source party.java
create source document using java language
complile
checks documents errors by source code compiler until satisfied
output (code)
compiler creates new document
coded into Java bytecode
platform-independent
any device capable running java
Virtual machines
not physical machine
virtual Java(implemented in software)
running inside gadgets
reads and run bytecode
strongly type
you will do
type source code file
party.java
compile using javac compiler
javac party.java
get Party.class (made up of bytecoe)
run compiled bytecode on Java VM
Terms
Threads