java5的两个新特性--import static , annotation

本文介绍了Java中的静态导入(import static)和注解(annotation)两个特性。静态导入可以帮助简化代码,减少对全限定名的使用;注解则为Java开发提供了更好的支持,允许开发者为程序元素添加元数据。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1import static

如果你在程序中有很多类似Math.PI的常量要使用,就可以使用import static,避免每次都要写Math.PI或
java.lang.Math.PI。
注意:这样的用法只有当你将大量使用 java.lang.Math.PI这类常量的时候才推荐使用,不然容易找成程序的混乱。
例子:
import static java.lang.Math.*;
........
double r = cos(PI * theta);


详见:http://java.sun.com/j2se/1.5.0/docs/guide/language/static-import.html .


2annotation
annotaion的目的是对java开发提供更好的支持。其使用作用:
Simply speaking,
annotation is a mechanism for associating a meta-tag with program
elements and allowing the compiler or the VM to extract program
behaviors from these annotated elements and generate interdependent
codes when necessary.
这个比较复杂,待续。
参见:
http://java.sun.com/j2se/1.5.0/docs/guide/language/annotations.html
http://java.sun.com/developer/technicalArticles/J2SE/constraints/annotations.html
http://www.developer.com/java/other/article.php/3556176
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值