1

I can't recall what the top portion of a method is called, the portion that will show up when you mouse over a method, for example, the default top portion of a doPost method in a servlet is:

  /**
 * Handles the HTTP <code>POST</code> method.
 *
 * @param   request   servlet request
 * @param   response  servlet response
 *
 * @throws  ServletException  DOCUMENT ME!
 * @throws  IOException       DOCUMENT ME!
 */

what is this top portion referred to as?

4

1 に答える 1

1

で始まる場合

/*

それはプレーンなコメントブロックですが、で始まります

/**

これは、Javadoc コメントであることを意味します。

于 2013-01-15T14:19:58.900 に答える