reset password
Author Message
lakerfan94
Posts: 143
Posted 15:19 Mar 07, 2014 |

For the headers, are there headers for these methods in java docs or do we come up with names on our own?

Eric Liao
Posts: 158
Posted 15:25 Mar 07, 2014 |

In one word answer, you define your own header. But if you can find the java docs method header, you may use the same one.


For those who don't know what method header is, see below:

Header for the method is how you define the method.

For instance:

public void sortArrayInDesc(int[] array)

is a header

Whatever comes between the bracket in the method is called method body.