第三章之枚举、注解

2019-01-22
内容:枚举、注解
一、自定义一个枚举类
 1 public class TestSeason {
 2 
 3     public static void main(String[] args) {
 4         Season spring = Season.Spring;
 5         System.out.println(spring);
 6     }
 7 }
 8 public class Season {
 9     //将属性定义为私有常量
10     private final String seasonName;
11     private final String seasonDes;
12     
13     //将构造器设置为私有的
14     private Season (String seasonName, String seasonDes) {
15         this.seasonName = seasonName;
16         this.seasonDes = seasonDes;
17     }
18     //利用构造器构造春夏秋冬四个对象
19     public static final Season Spring = new Season("春天","万物复苏");
20     public static final Season Summer = new Season("夏天","骄阳似火");
21     public static final Season Fall = new Season("秋天","秋高气爽");
22     public static final Season Winter = new Season("冬天","白雪皑皑");
23     //因为属性是常量,所以不能赋值
24     public String getSeasonName() {
25         return seasonName;
26     }
27     public String getSeasonDes() {
28         return seasonDes;
29     }
30     //重写toString方法
31     @Override
32     public String toString() {
33         return "Season [seasonName=" + seasonName + ", seasonDes=" + seasonDes + "]";
34     }
35     
36 }

 

二、通过关键字enum定义一个枚举类并使用方法
 1 public class TestSeason {
 2 
 3     public static void main(String[] args) {
 4         Season1 spring = Season1.Spring;
 5         System.out.println(spring);
 6         //使用values()方法将所有对象存入一个数组中
 7         Season1[] season = Season1.values();
 8         for (int i = 0; i < season.length; i++) {
 9             System.out.println(season[i]);
10         }
11         //使用valueOf(String name)方法将指定对象名的对象取出来
12         String name = "Winter";
13         Season1 winter = Season1.valueOf(name);
14         System.out.println(winter);
15     }
16 }
17 public enum Season1 {
18     Spring("春天","万物复苏"),
19     Summer("夏天","骄阳似火"),
20     Fall("秋天","秋高气爽"),
21     Winter("冬天","白雪皑皑");
22     
23     private final String seasonName;
24     private final String seasonDes;
25     
26     private Season1 (String seasonName, String seasonDes) {
27         this.seasonName = seasonName;
28         this.seasonDes = seasonDes;
29     }
30 
31     public String getSeasonName() {
32         return seasonName;
33     }
34     public String getSeasonDes() {
35         return seasonDes;
36     }
37 
38     @Override
39     public String toString() {
40         return "Season1 [seasonName=" + seasonName + ", seasonDes=" + seasonDes + "]";
41     }
42     
43 }

 

三、让枚举类实现一个接口,并且让枚举类的每个对象都重写接口中的抽象方法
 1 public class TestSeason {
 2 
 3     public static void main(String[] args) {
 4         Season1 spring = Season1.Spring;
 5         System.out.println(spring);
 6         //使用values()方法将所有对象存入一个数组中
 7         Season1[] season = Season1.values();
 8         for (int i = 0; i < season.length; i++) {
 9             System.out.println(season[i]);
10         }
11         //使用valueOf(String name)方法将指定对象名的对象取出来
12         String name = "Winter";
13         Season1 winter = Season1.valueOf(name);
14         System.out.println(winter);
15         //调用接口中的方法
16         spring.Show();
17     }
18 }
19 public interface Show {
20     void Show();
21 }
22 public enum Season1 implements Show {
23     Spring("春天","万物复苏"){
24         @Override
25         public void Show() {
26             System.out.println("春天:"+Spring.toString());
27         }
28     },
29     Summer("夏天","骄阳似火"){
30         @Override
31         public void Show() {
32             System.out.println("夏天:"+Spring.toString());
33         }
34     },
35     Fall("秋天","秋高气爽"){
36         @Override
37         public void Show() {
38             System.out.println("秋天:"+Spring.toString());
39         }
40     },
41     Winter("冬天","白雪皑皑"){
42         @Override
43         public void Show() {
44             System.out.println("冬天:"+Spring.toString());
45         }
46     };
47     
48     private final String seasonName;
49     private final String seasonDes;
50     
51     private Season1 (String seasonName, String seasonDes) {
52         this.seasonName = seasonName;
53         this.seasonDes = seasonDes;
54     }
55 
56     public String getSeasonName() {
57         return seasonName;
58     }
59     public String getSeasonDes() {
60         return seasonDes;
61     }
62 
63     @Override
64     public String toString() {
65         return "Season1 [seasonName=" + seasonName + ", seasonDes=" + seasonDes + "]";
66     }
67 }

 

四、JDK常用注释
  @Override:显示表明方法重写
  @Deprecated:表明方法或者类过时,但依旧可以使用
  @SuppressWarnings:抑制编译器警告,即不让编译器发出警告
五、自定义注解
  使用@interface
六、元注解
  释义:修饰注解的注解
  @Retention:*用来指定某个Annotation存在的时间长短
           *使用格式:@Retention(RetentionPolicy.成员变量)
                  @Retention(RetentionPolicy.SOURCE)表明该注释在编译时不会保留
                  @Retention(RetentionPolicy.CLASS)表明在编译时被记录在.class文件中,运行不会保留,这是默认值
                  @Retention(RetentionPolicy.RUNTIME)表明在编译时被记录在.class文件中,运行时也保留,程序可以通过反射获取该注释
  @Target:*用来指定某个Annotation能修饰的地方,默认是所有地方都能修饰
         *使用格式@Target(地方),地方可以是FIELD,METHOD,CONSTRUCTION,TYPE,LOCAL_VARIABLE,PACKAGE,PARAMETER,ANNOTATION_TYPE中的任意个
  @Documented:*用来指定某个Annotation在生成文档的时候会被保留
           *格式:@Documented
  @Inherited:*用来指定某个Annotation具有继承性

转载于:https://www.cnblogs.com/jbrr/p/10305754.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/395369.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

html打开后默认浏览器页面,使用VBA打开默认浏览器中的html页面?

您可以使用Windows API函数ShellExecute来执行此操作&#xff1a;Option ExplicitPrivate Declare Function ShellExecute _Lib "shell32.dll" Alias "ShellExecuteA" ( _ByVal hWnd As Long, _ByVal Operation As String, _ByVal Filename As String, _Op…

数据科学r语言_您应该为数据科学学习哪些语言?

数据科学r语言Data science is an exciting field to work in, combining advanced statistical and quantitative skills with real-world programming ability. There are many potential programming languages that the aspiring data scientist might consider specializi…

Linux平台不同解压缩命令的使用方法

作者&#xff1a;郭孝星 微博&#xff1a;郭孝星的新浪微博 邮箱&#xff1a;allenwells163.com 博客&#xff1a;http://blog.csdn.net/allenwells github&#xff1a;https://github.com/AllenWell 一 .tar 解包 tar xvf FileName.tar 打包 tar cvf FileName.tar DirName 注意…

unity中怎么做河流_【干货】工作中怎么做工业设计的?(一)

最近在找工作&#xff0c;一直在看招聘信息。看到工业设计工资还是蛮高的。应届毕业生一般是4-6K&#xff0c;1-3年工作经验是6-8K&#xff0c;3年以后的差不多是8K以上了。我没有嫉妒羡慕恨&#xff0c;发誓&#xff0c;真的没有。工业设计已经被重视&#xff0c;未来的道路会…

[易学易懂系列|golang语言|零基础|快速入门|(一)]

golang编程语言&#xff0c;是google推出的一门语言。 主要应用在系统编程和高性能服务器编程&#xff0c;有广大的市场前景&#xff0c;目前整个生态也越来越强大&#xff0c;未来可能在企业应用和人工智能等领域占有越来越重要的地位。 本文章是【易学易懂系列|编程语言入门】…

APUE学习之三个特殊位 设置用户ID(set-user-ID),设置组ID(set-group-ID),sticky...

设置用户ID&#xff08;set-user-ID&#xff09;&#xff0c;设置组ID&#xff08;set-group-ID&#xff09;&#xff0c;stickyset-user-ID: SUID当文件的该位有设置时&#xff0c;表示当该文件被执行时&#xff0c;程序具有文件所有者的权限而不是执行者的权限。这样说有点绕…

微信调用html退后方法,微信浏览器后退关闭页面

不需要引用 微信jssdk 关闭浏览器WeixinJSBridge.invoke(closeWindow, {}, function (res) { });参考&#xff1a;https://mp.weixin.qq.com/wiki/12/7dd29a53f4b55a8ddc6177ab60e5ee2c.html监听微信、支付宝等移动app及浏览器的返回、后退、上一页按钮的事件方法参考&#xff…

在gitlab 中使用webhook 实现php 自动部署git 代码

在技术团队讨论中&#xff0c;我们决定从svn 迁移到 git ,于是使用了gitlab&#xff0c;代码自动部署使用了webhook在服务器上 1.开启PHP需要的环境支持 服务器环境必须先安装git 环境&#xff0c;webhook 依赖php运行环境&#xff0c;同时需要使用shell_exec 和 exec 等函数。…

spi收发时的寄存器sr不变_「正点原子Linux连载」第二十七章SPI实验(二)

1)实验平台&#xff1a;正点原子Linux开发板2)摘自《正点原子I.MX6U嵌入式Linux驱动开发指南》关注官方微信号公众号&#xff0c;获取更多资料&#xff1a;正点原子文件bsp_spi.c中有两个函数&#xff1a;spi_init和spich0_readwrite_byte&#xff0c;函数spi_init是SPI初始化函…

vue脚手架vue数据交互_学习Vue:3分钟的交互式Vue JS教程

vue脚手架vue数据交互Vue.js is a JavaScript library for building user interfaces. Last year, it started to become quite popular among web developers. It’s lightweight, relatively easy to learn, and powerful.Vue.js是用于构建用户界面JavaScript库。 去年&#…

[JSOI2018]潜入行动

题解 一道思路不难但是写起来很麻烦的树形背包 我们发现每个节点有很多信息需要保留 所以就暴力的设\(f[u][j][0/1][0/1]\)表示点u的子树分配了j个监察器,点u有没有被控制,点u放没放监察器 然后就分四种情况暴力讨论就好了 注意背包的时候要卡常数 代码 #include<cstdio>…

css。元素样式、边框样式

1.外边距  margin 缩写形式&#xff1a; margin&#xff1a;上边距  右边距  下边距  左边距 margin&#xff1a;上下边距  左右边距 margin&#xff1a;上边距  左右边距  下边距 2.内边距  padding 缩写形式&#xff1a; padding&#xff1a;上边距  右边距…

html文本对齐6,HTML对齐文本

我要像以下列方式显示页面上的文本&#xff1a;HTML对齐文本My Text: Text HereMy Text: More Text Here.........................................................Text from line above continued here.我有以下的标记只是为了测试&#xff1a;body {font-family: arial;}fo…

vue底部跳转_详解Vue底部导航栏组件

不多说直接上代码 BottomNav.vue&#xff1a;{{item.name}}export default{props:[idx],data(){return {items:[{cls:"home",name:"首页",push:"/home",icon:"../static/home.png",iconSelect:"../static/home_select.png"}…

Android Studio环境搭建

Android Studio环境搭建 个人博客 欢迎大家多多关注该独立博客。 ###[csdn博客]&#xff08;http://blog.csdn.net/peace1213&#xff09; 一直想把自己的经验分享出来&#xff0c;记得上次写博客还是ok6410的笔记。感觉时代久远啊。记得那个时候我还一心想搞硬件了。如今又一次…

hacktoberfest_Hacktoberfest和其他有趣的事情将在本周末在freeCodeCamp

hacktoberfestby Quincy Larson昆西拉尔森(Quincy Larson) Hacktoberfest和其他有趣的事情将在本周末在freeCodeCamp (Hacktoberfest and other fun things going on this weekend at freeCodeCamp) Earlier this month, the freeCodeCamp community turned 3 years old. And …

C# 动态创建数据库三(MySQL)

前面有说明使用EF动态新建数据库与表&#xff0c;数据库使用的是SQL SERVER2008的&#xff0c;在使用MYSQL的时候还是有所不同 一、添加 EntityFramework.dll &#xff0c;System.Data.Entity.dll &#xff0c;MySql.Data, MySql.Data.Entity.EF6 注意&#xff1a;Entity Frame…

iOS开发Swift篇—(七)函数(1)

一、函数的定义 &#xff08;1&#xff09;函数的定义格式 1 func 函数名(形参列表) -> 返回值类型 { 2 // 函数体... 3 4 } &#xff08;2&#xff09;形参列表的格式 形参名1: 形参类型1, 形参名2: 形参类型2, … &#xff08;3&#xff09;举例&#xff1a;计算2个…

如何用计算机管理员权限,教你电脑使用代码添加管理员权限的详细教程

我们在使用电脑运行某些软件的时候&#xff0c;可能需要用到管理员权限才能运行&#xff0c;通常来说直接点击右键就会有管理员权限&#xff0c;但最近有用户向小编反馈&#xff0c;在需要管理员权限的软件上点击右键没有看到管理员取得所有权&#xff0c;那么究竟该如何才能获…

activiti 5.22的demo运行

activiti 5.22的demo运行 从github上clon下来的activiti项目,运行demo项目activiti-webapp-explorer2时&#xff0c;在使用到流程设计工作区&#xff0c;选取activiti modeler作为设计器的时候报错。 从下面的报错信息中发现&#xff0c;请求路径http://localhost:8080/activit…