Ich fürchte, deine Ausführungen gehen ins Leere. Die Antwort von Lee6 ist im Wesentlichen eine automatische Übersetzung eines Teils dieser Seite:
https://www.w3schools.com/java/java_classes.asp und stinkt ganz gewaltig nach Bot.
Zitat:
To create an object of MyClass, specify the class name, followed by the object name, and use the keyword new:
Example
Create an object called "myObj" and print the value of x:
public class MyClass {
int x = 5;
public static void main(String[] args) {
MyClass myObj = new MyClass();
System.out.println(myObj.x);
}
}