eclipse 자동 주석 추가

871 단어 eclipse
eclipse에서 설정하기
 
window->preferences->java->code style->code templates 오른쪽,comment->types 열기,edit 클릭
 
/**
 *    
 * @author limx
 * @date ${date}
 * ${tags}
 */

 
주:author와date는 insert variable를 통해 이루어질 수 있지만, 제 로그인 계정은lenovo이기 때문에 수동으로 자신의 이름 문자열을 입력합니다.
 
preferences 아래에 auto add comments for new methods and types 콤보 상자가 있습니다. 이 상자를 선택한 다음 적용합니다.됐어요.
 
최종 결과를 보려면 다음과 같이 하십시오.
 
/**
 *    
 * @author limx
 * @date 2011-6-23
 */
public class Test {

	/**
	 *     
	 * @param x
	 * @param y
	 * @return
	 */
	public int add(int x,int y){
		return x+y;
	}

}

주: 방법의 주석 자동 생성 방식은 다음과 같습니다./**를 입력한 다음enter를 누르면 됩니다.

좋은 웹페이지 즐겨찾기