annotation - Deprecated

package com.annotation;

public class DeprecatedTest
{
	/**
	 * 
	 * Depretcated: 当前方法不建议使用, 在未来可能会出现变化, 但目前可以使用.
	 * 
	 */
	
	@Deprecated
	public void test()
	{
		System.out.println("不建议使用本方法");
	}
	
	public static void main(String[] args)
	{
		DeprecatedTest deprecatedTest = new DeprecatedTest();
		deprecatedTest.test();
	}
}

  

posted @ 2017-09-19 09:19  C/C++/Python/Java  阅读(318)  评论(0编辑  收藏  举报