- 0
- 0
- 约8.06千字
- 约 8页
- 2018-03-07 发布于河北
- 举报
Annotation注释基础.doc
在JDK1.5之后,系统已经建立了如下3个内建的Annotation类型,用户直接使用即可:
@Override
@Deprecated
@SuppressWarnings
注:以上三个内建的Annotation全部是java..lang包中定义的。因为包在使用时是自动导入的,所以可以直接使用。
1、@Override主要是在方法覆写时使用(限制:此Annotation只能在方法上应用)
package cyc.annotation1;
class Person{
public String getInfo(){
return 父类的方法--getInfo()。 ;
}
}
class Student extends Person {
@Override public String getInfo(){
return 子类的方法--getInfo()。 ;
}
}
public class OverrideDemo{
public static void main(String args[]){
Person per = new Student() ;//通过子类实例化父类对象
System.out.println(per.getInfo()) ;
}
}子类的方法--getInfo()。package cyc.annotation1;
您可能关注的文档
- 1.@SuppressWarnings(unchecked)作用解释.docx
- 10-乘员保护系统.docx
- 190th干熄炉操作说明书.doc
- 2010云南省上半年软考网络工程师上、下午最新考试题库.docx
- 2010福建省5月软考《网络工程师》必过技巧.docx
- 2010海南省软考网络工程师理论考试试题及答案.docx
- 2010辽宁省网络工程师职业考试技巧重点.docx
- 2010陕西省计算机与软件水平考试-网络工程师最新考试题库.docx
- 2010青海省上半年软考网络工程师下午必过技巧.docx
- 2010香港特别行政区网络工程师考试题库.docx
- 2025年新人教版7年级英语上册全册课件.pptx
- 2025年秋季新人教版历史7年级上册全册教学课件.pptx
- 2025年秋新人教版英语7年级上册全册教学课件(新版教材).pptx
- 2025年人教版历史7年级上册全册课件(新版教材).pptx
- 2024年新沪科版物理8年级上册全册教学课件.pptx
- 2025年秋季新星球版地理7年级上册全册教学课件.pptx
- 2024年秋季新沪科版8年级上册物理全册教学课件.pptx
- 2024年秋季人教版7年级上册语文全册教学课件(考点精讲版).pptx
- 2025年秋新外研版3年级上册英语全册教学课件(新版教材).pptx
- 2024年新外研版3年级上册英语全册课件.pptx
原创力文档

文档评论(0)