java method definition calls

First, the definition

format:

Modifier return type method name (parameter) {

  return

}

 

In contrast python method is much simpler definition

public static modifier is

Second, call

Method name ();

Note: To call the main method

Guess you like

Origin www.cnblogs.com/wt7018/p/12153768.html