Java Doc API文档_其他
Java Doc API文档_其他_02

package Bao2;

/**
 * @author wangchang
 * @version 1.0
 * @since 1.8
 */

public class Doc {
    String name;
    /**
     * @AUT
     * @param name
     * @return
     * @throws Exception
     */
    public String test(String name) throws Exception{
        return name;
    }
}

Java Doc API文档_其他_03