Skip to content

Latest commit

 

History

History
137 lines (92 loc) · 4.68 KB

README.md

File metadata and controls

137 lines (92 loc) · 4.68 KB

Basic Info

Name: Java

Creator(s): James Gosling

Date: May 23, 1995

Website: oracle.com

Intro

Java is a high-level, class-based, object-oriented programming language that is designed to have as few implementation dependencies as possible. It is a general-purpose programming language intended to let programmers write once, run anywhere (WORA), meaning that compiled Java code can run on all platforms that support Java without the need for recompilation. Java applications are typically compiled to bytecode that can run on any Java virtual machine (JVM) regardless of the underlying computer architecture.

The syntax of Java is similar to C and C++, but has fewer low-level facilities than either of them. The Java runtime provides dynamic capabilities (such as reflection and runtime code modification) that are typically not available in traditional compiled languages. As of 2019, Java was one of the most popular programming languages in use according to GitHub, particularly for client–server web applications, with a reported 9 million developers.

Java must be compiled before execution. To compile a file use the command javac file.java and then to execute the output file use the command java file.

Syntax

Variables in Java must be declared with a type, the basic syntax for declaring new variables is shown below. All lines must be ended with a semicolon.

type variable = value;

If/Else in Java is very much the same as other languages, the basic syntax is shown below.

if (true) {
  System.out.println("True!");
} else {
  System.out.println("False!");
}

Loops in Java follow the classic initial/condition/after style shown below.

for (int x = 0; x < 10; x = x + 1) {
  System.out.print("The value of x is: " + x + "\n");
}

Functions in Java are called Methods. Declaring a new method starts with a modifier to define the access type of the method (public/private). After the modifier you need a return type, the name of the method, the parameters list and the body of the method surrounded by curly braces.

public static int maxFunction(int num1, int num2) {

  if (num1 > num2) {
    return num1;
  } else {
    return num2;
  }

}

int num1 = 1;
int num2 = 2;

int max = maxFunction(num1, num2);

System.out.println("Maximum value is: " + max);

Classes are declared using a modifier (public/private) followed by the keyword class and the class name. Constructor methods in Java classes should match the class name.

public class Employee {

  String name;
  int age;
  String designation;
  double salary;

  // This is the constructor of the class Employee.
  public Employee(String name) {
    this.name = name;
  }

  // Assign the age of the Employee to the variable age.
  public void empAge(int age) {
    this.age = age;
  }

  // Assign the designation of the Employee to the variable designation.
  public void empDesignation(String designation) {
    this.designation = designation;
  }

  // Assign the salary of the Employee to the variable salary.
  public void empSalary(double salary) {
    this.salary = salary;
  }

  // Print the Employee details.
  public void printEmployee() {
    System.out.println("Name: "+ name);
    System.out.println("Age: " + age);
    System.out.println("Designation: " + designation);
    System.out.println("Salary: $" + salary);
  }

  public static void main(String []args) {

    Employee employee = new Employee("Jacob Philpott");

    employee.empAge(29);
    employee.empDesignation("Senior Software Engineer");
    employee.empSalary(1000000.00);
    employee.printEmployee();

  }

}

Libraries

  • Awesome Java ~ A curated list of awesome frameworks, libraries and software for the Java programming language.

More Info