Chinaunix首页 | 论坛 | 博客
  • 博客访问: 756701
  • 博文数量: 160
  • 博客积分: 2516
  • 博客等级: 大尉
  • 技术积分: 1511
  • 用 户 组: 普通用户
  • 注册时间: 2004-10-24 17:58
文章分类

全部博文(160)

文章存档

2019年(2)

2018年(3)

2017年(15)

2016年(3)

2015年(11)

2014年(3)

2013年(1)

2012年(3)

2011年(17)

2010年(25)

2009年(17)

2008年(13)

2007年(14)

2006年(21)

2005年(10)

2004年(2)

分类: Java

2015-08-23 11:58:12

/**  * The {@code int} value representing the {@code public}  * modifier.  */ 
public static final int PUBLIC = 0x00000001
/**  * The {@code int} value representing the {@code private}  * modifier.  */ 
public static final int PRIVATE = 0x00000002
/**  * The {@code int} value representing the {@code protected}  * modifier.  */ 
public static final int PROTECTED = 0x00000004
/**  * The {@code int} value representing the {@code static}  * modifier.  */ 
public static final int STATIC = 0x00000008
/**  * The {@code int} value representing the {@code final}  * modifier.  */ 
public static final int FINAL = 0x00000010
/**  * The {@code int} value representing the {@code synchronized}  * modifier.  */ 
public static final int SYNCHRONIZED = 0x00000020
/**  * The {@code int} value representing the {@code volatile}  * modifier.  */ 
public static final int VOLATILE = 0x00000040
/**  * The {@code int} value representing the {@code transient}  * modifier.  */ 
public static final int TRANSIENT = 0x00000080
/**  * The {@code int} value representing the {@code native}  * modifier.  */ 
public static final int NATIVE = 0x00000100
/**  * The {@code int} value representing the {@code interface}  * modifier.  */
public static final int INTERFACE = 0x00000200
/**  * The {@code int} value representing the {@code abstract}  * modifier.  */ 
public static final int ABSTRACT = 0x00000400
/**  * The {@code int} value representing the {@code strictfp}  * modifier.  */ 
public static final int STRICT = 0x00000800;
//具体定义在 java.lang.reflect.Modifier 类中
                                   
阅读(688) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~