Skip to content

leonardosolisbadaro/java-roadmap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

Java Roadmap

GitHub last commit GitHub license GitHub watchers

🇧🇷
Guia passo a passo para se tornar um Desenvolvedor Java em 2022.

🇺🇸
Step by step guide to becoming a Java Developer in 2022.

🔖 Java

In Java, when we compile a program, each individual class is converted into a .class file, which is known as byte code.

The JVM (Java virtual machine) is used to run the byte code.

overview-fig3

📄 Hello Java!

In Java, every application must contain a main() method, which is the entry point for the application. All other methods are invoked from the main() method.

The signature of the method is public static void main(String[] args) { }. It accepts a single argument: an array of elements of type String.

System.out.println() can print to the console.

public class Clazz {
  public static void main(String[] args) {
    System.out.println("Hello, world!");
  }
}

☕ Road

  1. Names and Things
  2. Control
    • ...

📖 Bibliography

WEB

COURSES

BOOKS

  • Eck, David J. 2022. Introduction to Programming Using Java - Version 9, JavaFX Edition.

About

Step by step guide to becoming a Java Developer in 2022.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages