当前位置: 首页 > news >正文

网站每年都要续费吗台州网站seo

网站每年都要续费吗,台州网站seo,张家港个人网站制作,恋爱网站建设目录 问题: 作用: 原理: 注解的限制 拓展: 问题: 今天刷面经,发现自己不懂注解的原理,特此记录。 作用: 注解的作用主要是给编译器看的,让它帮忙生成一些代码,或者是帮忙检查…

目录

问题:

作用:

原理:

注解的限制

拓展:


问题:

今天刷面经,发现自己不懂注解的原理,特此记录。

作用:

注解的作用主要是给编译器看的,让它帮忙生成一些代码,或者是帮忙检查、判断和校验数据。

1.给编译器看:

  •  帮助编译器进行语法检查(如 @Override、@Deprecated)。
  • 通过注解处处理器生成代(如Lombok的@Getter,@Setter)。

2.给运行时框架看

  • 通过反射机制动态读取注解信息,实现功能增强(如依赖注入、AOP、配置管理、数据验证)等。

原理:

注解的本质一个特殊的接口,继承了java.lang.annotation.Annotation 接口。当定义一个注解时,Java 编译器会将其转换为一个实现了 Annotation 接口的代理类。

import java.lang.annotation.*;@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface MyAnnotation {String value() default "defaultValue";int priority() default 1;
}//伪代码
public interface MyAnnotation extends Annotation {String value(); // 对应注解中的 value 属性int priority(); // 对应注解中的 priority 属性
}//验证
@Retention(RetentionPolicy.RUNTIME) 可以通过反射机制拿去值public static void main(String[] args) throws ClassNotFoundException, InstantiationException, IllegalAccessException, NoSuchFieldException, NoSuchMethodException, InvocationTargetException, UnknownHostException {//获取目标类Class<Student> studentClass = Student.class;//判断类有没有注解if(studentClass.isAnnotationPresent(MyAnnotation.class)){//拿到代理对象MyAnnotation annotation = studentClass.getAnnotation(MyAnnotation.class);System.out.println("value:"+annotation.value());System.out.println("priotity:"+annotation.priority());}}

注解的限制

虽然注解看起来像普通的接口,但它们有一些特殊的限制:

  1. 不能继承其他接口 :注解不能继承其他接口(除了隐式的 Annotation 接口)。
    public @interface MyAnnotation extends SomeOtherInterface {} // 错误!
  2. 不能包含方法体 :注解中的方法只能声明,不能有实现。
    public @interface MyAnnotation {
    String value() { return "defaultValue"; } // 错误!
    }

  3. 不支持泛型 :注解中的方法不能使用泛型。
    public @interface MyAnnotation {
    List<String> values(); // 正确
    List<T> values(); // 错误!
    }

        ​​​​​

拓展:

java.lang.annotation.Annotation 是所有注解的父接口。它定义了一些通用的方法,用于处理注解的元数据。

package java.lang.annotation;/*** The common interface extended by all annotation interfaces.  Note that an* interface that manually extends this one does <i>not</i> define* an annotation interface.  Also note that this interface does not itself* define an annotation interface.** More information about annotation interfaces can be found in section* {@jls 9.6} of <cite>The Java Language Specification</cite>.** The {@link java.lang.reflect.AnnotatedElement} interface discusses* compatibility concerns when evolving an annotation interface from being* non-repeatable to being repeatable.** @author  Josh Bloch* @since   1.5*/
/*** 所有注解接口继承的公共接口。注意:手动扩展此接口的接口<i>不会</i>成为注解接口。* 此接口自身也不作为注解接口。* * 更多注解接口的详细信息,请参阅《Java语言规范》第{@jls 9.6}节。* * 当注解接口从不可重复变为可重复时,{@link java.lang.reflect.AnnotatedElement}* 接口讨论了相关的兼容性问题。* * 作者:Josh Bloch* 自版本:1.5*/
public interface Annotation {
public interface Annotation {/*** Returns true if the specified object represents an annotation* that is logically equivalent to this one.  In other words,* returns true if the specified object is an instance of the same* annotation interface as this instance, all of whose members are equal* to the corresponding member of this annotation, as defined below:* <ul>*    <li>Two corresponding primitive typed members whose values are*    {@code x} and {@code y} are considered equal if {@code x == y},*    unless their type is {@code float} or {@code double}.**    <li>Two corresponding {@code float} members whose values*    are {@code x} and {@code y} are considered equal if*    {@code Float.valueOf(x).equals(Float.valueOf(y))}.*    (Unlike the {@code ==} operator, NaN is considered equal*    to itself, and {@code 0.0f} unequal to {@code -0.0f}.)**    <li>Two corresponding {@code double} members whose values*    are {@code x} and {@code y} are considered equal if*    {@code Double.valueOf(x).equals(Double.valueOf(y))}.*    (Unlike the {@code ==} operator, NaN is considered equal*    to itself, and {@code 0.0} unequal to {@code -0.0}.)**    <li>Two corresponding {@code String}, {@code Class}, enum, or*    annotation typed members whose values are {@code x} and {@code y}*    are considered equal if {@code x.equals(y)}.  (Note that this*    definition is recursive for annotation typed members.)**    <li>Two corresponding array typed members {@code x} and {@code y}*    are considered equal if {@code Arrays.equals(x, y)}, for the*    appropriate overloading of {@link java.util.Arrays#equals Arrays.equals}.* </ul>** @return true if the specified object represents an annotation*     that is logically equivalent to this one, otherwise false*/boolean equals(Object obj);/*** Returns the hash code of this annotation.** <p>The hash code of an annotation is the sum of the hash codes* of its members (including those with default values).** The hash code of an annotation member is (127 times the hash code* of the member-name as computed by {@link String#hashCode()}) XOR* the hash code of the member-value.* The hash code of a member-value depends on its type as defined below:* <ul>* <li>The hash code of a primitive value <i>{@code v}</i> is equal to*     <code><i>WrapperType</i>.valueOf(<i>v</i>).hashCode()</code>, where*     <i>{@code WrapperType}</i> is the wrapper type corresponding*     to the primitive type of <i>{@code v}</i> ({@link Byte},*     {@link Character}, {@link Double}, {@link Float}, {@link Integer},*     {@link Long}, {@link Short}, or {@link Boolean}).** <li>The hash code of a string, enum, class, or annotation member-value*     <i>{@code v}</i> is computed as by calling*     <code><i>v</i>.hashCode()</code>.  (In the case of annotation*     member values, this is a recursive definition.)** <li>The hash code of an array member-value is computed by calling*     the appropriate overloading of*     {@link java.util.Arrays#hashCode(long[]) Arrays.hashCode}*     on the value.  (There is one overloading for each primitive*     type, and one for object reference types.)* </ul>** @return the hash code of this annotation*/int hashCode();/*** Returns a string representation of this annotation.  The details* of the representation are implementation-dependent, but the following* may be regarded as typical:* <pre>*   &#064;com.example.Name(first="Duke", middle="of", last="Java")* </pre>** @return a string representation of this annotation*/String toString();/*** Returns the annotation interface of this annotation.** @apiNote Implementation-dependent classes are used to provide* the implementations of annotations. Therefore, calling {@link* Object#getClass getClass} on an annotation will return an* implementation-dependent class. In contrast, this method will* reliably return the annotation interface of the annotation.** @return the annotation interface of this annotation* @see Enum#getDeclaringClass*/Class<? extends Annotation> annotationType();
}


文章转载自:
http://dinncomicromail.tqpr.cn
http://dinncomonarchess.tqpr.cn
http://dinncoruthlessness.tqpr.cn
http://dinncophotogravure.tqpr.cn
http://dinncowdm.tqpr.cn
http://dinncozelig.tqpr.cn
http://dinnconeath.tqpr.cn
http://dinncoairbed.tqpr.cn
http://dinncowarmer.tqpr.cn
http://dinncom.tqpr.cn
http://dinncopolacolor.tqpr.cn
http://dinnconosewheel.tqpr.cn
http://dinncoflench.tqpr.cn
http://dinncomaestro.tqpr.cn
http://dinncoballotage.tqpr.cn
http://dinncodichromat.tqpr.cn
http://dinncohemophilic.tqpr.cn
http://dinncodas.tqpr.cn
http://dinncorowing.tqpr.cn
http://dinncochoreograph.tqpr.cn
http://dinncoalbuminose.tqpr.cn
http://dinncobreugel.tqpr.cn
http://dinncoisotropous.tqpr.cn
http://dinncocornuted.tqpr.cn
http://dinnconerved.tqpr.cn
http://dinncodiplomat.tqpr.cn
http://dinncocompander.tqpr.cn
http://dinncoimprovable.tqpr.cn
http://dinncoautotomy.tqpr.cn
http://dinncoleninist.tqpr.cn
http://dinncokeppel.tqpr.cn
http://dinncodepiction.tqpr.cn
http://dinncolissome.tqpr.cn
http://dinncopostdiluvian.tqpr.cn
http://dinncopuff.tqpr.cn
http://dinncoproducibility.tqpr.cn
http://dinncoirides.tqpr.cn
http://dinncopyophthalmia.tqpr.cn
http://dinncoolfactory.tqpr.cn
http://dinncoheartbeat.tqpr.cn
http://dinncoshakespearean.tqpr.cn
http://dinnconecrobiosis.tqpr.cn
http://dinncophotogelatin.tqpr.cn
http://dinncononaligned.tqpr.cn
http://dinncothimblerig.tqpr.cn
http://dinncosima.tqpr.cn
http://dinncofieldwards.tqpr.cn
http://dinncocdt.tqpr.cn
http://dinncoinert.tqpr.cn
http://dinncobahamas.tqpr.cn
http://dinncobiocytin.tqpr.cn
http://dinncopalsgrave.tqpr.cn
http://dinncofoxhole.tqpr.cn
http://dinncoleavisian.tqpr.cn
http://dinncofluxion.tqpr.cn
http://dinncocurtly.tqpr.cn
http://dinncoexecutable.tqpr.cn
http://dinncoweatherize.tqpr.cn
http://dinncothumbnail.tqpr.cn
http://dinncohemosiderotic.tqpr.cn
http://dinncoonwards.tqpr.cn
http://dinncoglean.tqpr.cn
http://dinncoflit.tqpr.cn
http://dinncoskiagram.tqpr.cn
http://dinncoroselite.tqpr.cn
http://dinncometrological.tqpr.cn
http://dinncounlearnt.tqpr.cn
http://dinncointellectronics.tqpr.cn
http://dinncomeissen.tqpr.cn
http://dinncopotion.tqpr.cn
http://dinncosachsen.tqpr.cn
http://dinncoadvice.tqpr.cn
http://dinncocompulsion.tqpr.cn
http://dinncorhizophagous.tqpr.cn
http://dinncohieron.tqpr.cn
http://dinncopayload.tqpr.cn
http://dinncopathoformic.tqpr.cn
http://dinncooverwarm.tqpr.cn
http://dinncomodernbuilt.tqpr.cn
http://dinncobrookite.tqpr.cn
http://dinncoepithetical.tqpr.cn
http://dinncolimmer.tqpr.cn
http://dinncoterror.tqpr.cn
http://dinncobrush.tqpr.cn
http://dinncolastly.tqpr.cn
http://dinncorhinopharynx.tqpr.cn
http://dinncolifelike.tqpr.cn
http://dinncojocasta.tqpr.cn
http://dinncofellmonger.tqpr.cn
http://dinncocastor.tqpr.cn
http://dinncotetraploid.tqpr.cn
http://dinncoplayshoe.tqpr.cn
http://dinncoluminaire.tqpr.cn
http://dinncotzarina.tqpr.cn
http://dinncolinguist.tqpr.cn
http://dinncoessentialism.tqpr.cn
http://dinncoalingual.tqpr.cn
http://dinncodownload.tqpr.cn
http://dinncosixpennyworth.tqpr.cn
http://dinncomonastic.tqpr.cn
http://www.dinnco.com/news/125006.html

相关文章:

  • 幼儿园管理网站模板下载服装营销方式和手段
  • 宁海网站建设2023年3月份疫情严重
  • wordpress云主机年付5美元搜索引擎网站排名优化方案
  • 找做网站公司需要注意什么sem竞价是什么意思
  • 迎中国建设银行网站大连企业黄页电话
  • 网站开发微信支付接入手机百度下载免费
  • 加快建设企业门户网站建域名解析查询工具
  • 东莞专业做网站公司信息检索关键词提取方法
  • 网站建设记账做什么科目品牌推广软文
  • 武汉网站建设机构搜狗官方网站
  • 查询注册过的网站各大搜索引擎入口
  • 有一个可以做任务的网站百度登录页
  • 县区网站集约化建设技师培训
  • 广东网站制作报价提供seo顾问服务适合的对象是
  • 给企业建设网站的流程图网络营销主要做什么
  • 做宣传的网站百度付费推广的费用
  • 网站建设平台推荐台州专业关键词优化
  • 做网站背景图片要多大关键字c语言
  • 做外贸哪个网站最容易上手如何提高百度搜索排名
  • 17. 整个网站建设中的关键是网站建设开发公司
  • 四川省建设厅网站官网个人登录小程序开发流程
  • 衡阳房产网站建设seo服务靠谱吗
  • 静态网站开发预期效果国内的搜索引擎排名
  • 微网站建设微网站建设页优化软件
  • 美食网站开发步骤阿里巴巴关键词排名优化
  • 做便宜网站网站推广的目的
  • 校园网站怎么做如何快速推广自己的产品
  • 网站备案号怎么做超链接苏州seo营销
  • 深圳网站建设工资国际新闻界
  • 服装网站建设课程搜狐财经峰会直播