What does it mean to call a Java method using “new” in a statement?
It creates a new instance of the given class
Why not just do: myFunction();
Most likely myFunction() is an instance method:
public void myFunction() {
....
}
In order to invoke an instance method, you need an instance first.
Using the new keyword creates a new object and then it invokes the myFunction method on that object.
Methods marked with the static access modifier are class methods, they belong to the whole class and don't need an instance to work.
Methods who are not marked as static do need an instance to work.
That's what the compiler error:
...cannot invoke a non-static method from a static context...1
is all about.
1or something like that