- @see
- @deprecated
- @author
- @version
- 等
- @see
- @deprecated
- @param
- @@return
- @throws
- @exception
- 等
- @see
- @deprecated
public class Annotation {
public static String hello(String name){
return name + " ,你好!";
}
public static void main(String[] args) {
String st = hello("张三");
System.out.println(st);
}
}



