21 min read

Hello, World!

This article shows the basic language structures and constructs of Java (aka anatomy). In async order, it is critical to understand these examples and learn vocab for OOP and Creating Objects:

Static example

The class HelloStatic contains the classic “Hello, World!” message that is often used as an introduction to a programming language. The “public static void main(String[] args)”, or main method, is the default runtime method in Java and has a very specific and ordered definition (signature).

The key terms in HelloStatic introduction:

  • “class” is a blueprint for code, it is the code definition and must be called to run
  • “method” or “static method” in this case, is the code to be run/executed, similar to a procedure
  • “method definition” or “signature” are the keywords “public static void” in front of the name “main” and the parameters “String[] args” after the name.
  • “method call” is the means in which we run the defined code
// Define Static Method within a Class
public class HelloStatic { //Defines a blueprint for creating more objects
    // Java standard runtime entry point
    public static void main(String[] args) {    
        System.out.println("Hello World!");
    }
}
// A method call allows us to execute code that is wrapped in Class
HelloStatic.main(null);   // Class prefix allows reference of Static Method
Hello World!

Dynamic Example

This example starts to use Java in its natural manner, using an object within the main method. This example is a very basic illustration of Object Oriente Programming (OOP). The main method is now used as a driver/tester, by making an instance of the class. Thus, it creates an Object using the HelloObject() constructor. Also, this Class contains a getter method called getHello() which returns the value with the “String hello”.

The key terms in HelloStatic introduction:

  • “Object Oriented Programming” focuses software design around data, or objects.
  • “object” contains both methods and data
  • “instance of a class” is the process of making an object, unique or instances of variables are created within the object
  • “constructor” special method in class, code that is used to initialize the data within the object
  • “getter” is a method that is used to extract or reference data from within the object.
// Define Class with Constructor returning Object
public class HelloObject {
    private String hello;   // instance attribute or variable
    public HelloObject() {
        hello = "Hello, World!";
    }
    public String getHello() {  // Body of the class is what is inside of the public class
        return this.hello;
    }
    public static void main(String[] args) {    
        HelloObject ho = new HelloObject(); // Instance of Class (ho) is an Object via "new HelloObject()"
        System.out.println(ho.getHello()); // Object allows reference to public methods and data
    }
}
HelloObject.main(null);
Hello, World!

Dynamic Example with two constructors

This last example adds to the basics of the Java anatomy. The Class now contains two constructors and a setter to go with the getter. Also, observe the driver/tester now contains two objects that are initialized differently, 0 and 1 argument constructor. Look at the usage of the “this” prefix. The “this” keyword helps in clarification between instance and local variable.

The key terms in HelloDynamic introduction:

  • “0 argument constructor” constructor method with no parameter ()
  • “1 argument constructor” construct method with a parameter (String hello)
  • “this keyword” allows you to clear reference something that is part of the object, data or method
  • “local variable” is a variable that is passed to the method in this example, see the 1 argument constructor as it has a local variable “String hello”
  • “dynamic” versus “static” is something that has option to change, static never changes. A class (blueprint) and objects (instance of blueprint) are generally intended to be dynamic. Constructors and Setters are used to dynamically change the content of an object.
  • “Java OOP, Java Classes/Objects, Java Class Attributes, Java Class Methods, Java Constructors” are explained if more complete detail in W3 Schools: https://www.w3schools.com/java/java_oop.asp


// This is the class HelloDynamic and is public because other objects can access it
public class HelloDynamic {
    // instance variable have access modifier (private is most common), data type, and name
    private String hello;
    // constructor signature 1, public and zero arguments, constructors do not have return type
    public HelloDynamic() {  // 0 argument constructor
        this.setHello("Hello, World!");  // using setter with static string
    }
    public HelloDynamic(String hello) { // 1 argument constructor
        this.setHello(hello);   // using setter with local variable passed into constructor
    }
    public void setHello(String hello) { // setter
        this.hello = hello;     // instance variable on the left, local variable on the right
    }
    public String getHello() {  // getter
        return this.hello;
    }
    // public static void main(String[] args) is signature for main/drivers/tester method
    public static void main(String[] args) {  
        HelloDynamic hd1 = new HelloDynamic(); // no argument constructor
        HelloDynamic hd2 = new HelloDynamic("Hello, Nighthawk Coding Society!"); // one argument constructor
        System.out.println(hd1.getHello()); // accessing getter
        System.out.println(hd2.getHello()); 
    }
}
HelloDynamic.main(null);
Hello, World!
Hello, Nighthawk Coding Society!

Hacks

Build your own Jupyter Notebook meeting these College Board and CTE competencies. It is critical to understand Static versus Instance Now, this is College Board requirement!!!

  • Explain Anatomy of a Class in comments of program (Diagram key parts of the class).
  • Comment in code where there is a definition of a Class and an instance of a Class (ie object)
  • Comment in code where there are constructors and highlight the signature difference in the signature
  • Call an object method with parameter (ie setters).

Additional requirements (Pick something)

  1. Go through code progression of understanding Class usage and generating an Instance of a Class (Object).

    a. Build a purposeful dynamic Class, using an Object, generate multiple instances: - Person: Name and Age - Dessert: Type and Cost - Location: City, State, Zip

    b. Create a static void main tester method to generate objects of the class.

    c. In tester method, show how setters/mutators can be used to make the data in the Object dynamically change

  2. Go through progression of understanding a Static Class. Build a purposeful static Class, no Objects.

    • Calculate common operations on a Date field, age since date, older of two dates, number of seconds since date

    • Calculate stats functions on an array of values: mean, median, mode.

import java.util.Scanner;

public class Person {
    public static void main(S   tring[] args) {
        Scanner scanner = new Sca`nner(System.in);

        System.out.println("Please input your name: ");
        String name = scanner.nextLine();

        System.out.println("Please input your age: ");
        int age = scanner.nextInt();

        System.out.println("Name: " + name);
        System.out.println("Age: " + age);

        scanner.close();
    }
}
Person.main(null)
Please input your name: 
Please input your age: 
Name: Edwin
Age: 17
import java.util.Scanner;

public class Dessert {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);

        System.out.println("What is your favorite Dessert?:");
        String dessert = scanner.nextLine();

        System.out.println("What is the Price?");
        int price = scanner.nextInt();

        System.out.println("Dessert: " + dessert);
        System.out.println("Price: " + price);

        scanner.close();
    }
}
Dessert.main(null)
import java.util.Scanner;

public class Location {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);

        System.out.println("Please input a city: ");
        String city = scanner.nextLine();

        System.out.println("Please input the state of that city: ");
        String state = scanner.nextInt();
        
        System.out.println("Please : ");
        String state = scanner.nextInt();

        System.out.println("City: " + city);
        System.out.println("State: " + state);

        scanner.close();
    }
}
Location.main(null)
// Setter and Getter
import java.util.Scanner;

public class Person {
    private String name;
    private int age;

    public void setName(String name) {
        this.name = name;
    }

    public String getName() {
        return name;
    }

    public void setAge(int age) {
        this.age = age;
    }

    public int getAge() {
        return age;
    }

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);

        Person person = new Person();

        System.out.println("Please input your name: ");
        String name = scanner.nextLine();
        person.setName(name);

        System.out.println("Please input your age: ");
        int age = scanner.nextInt();
        person.setAge(age);

        System.out.println("Name: " + person.getName());
        System.out.println("Age: " + person.getAge());

        scanner.close();
    }
}
Person.main(null)
Please input your name: 
Please input your age: 
Name: Edwin
Age: 17