枚举类可用于定义常量
ch01
package edu.nf.demo.ch01;

/**
*
* 枚举类型
*/
public enum Color { /**
* 红色
*/
RED,
/**
* 黄色
*/
YELLOW,
/**
* 蓝色
*/
BLUE,
/**
* 绿色
*/
GREEN,
/**
* 黑色
*/
BLACK }

Color

ch01

public class Main {

    public static void main(String[] args) {
//test1();
test2(Color.RED);
//test3(Color.RED);
} private static void test1(){
//Color.RED得到的是一个Color枚举元素的实例
System.out.println("枚举实例:"+Color.RED);
System.out.println("枚举元素名称:"+Color.RED.name());
System.out.println("枚举元素下标:"+Color.BLUE.ordinal());
System.out.println(Color.BLUE);
System.out.println(Color.BLUE.name());
System.out.println(Color.BLUE.ordinal());
System.out.println("---------------");
for (Color value : Color.values()) {
System.out.println(value);
}
} private static void test2(Color color){
System.out.println(color);
switch (color) {
case RED:
System.out.println("This is red color");
break;
case BLUE:
System.out.println("This is blue color");
break;
default:
System.out.println("no color");
}
} private static void test3(Color color){
System.out.println(color);
if(color.equals(Color.RED)){
System.out.println("This is red color");
}else if(color.equals(Color.BLUE)){
System.out.println("This is blue color");
}else{
System.out.println("no color");
}
}
}

main

ch02
public enum Color {

    /**
* 红色
*/
RED(0),
/**
* 黄色
*/
YELLOW(1),
/**
* 蓝色
*/
BLUE(2),
/**
* 绿色
*/
GREEN(3),
/**
* 黑色
*/
BLACK(4)
; //分隔符 //声明一个实例变量
private Integer color; //构造方法
Color(Integer color){
this.color = color;
} //提供一个get方法用于获取color变量的值
public Integer getColor() {
return color;
}
}

Color(枚举自定义构造函数以及添加方法)

ch02

public class Main {

    public static void main(String[] args) {
System.out.println(Color.YELLOW.name());
System.out.println(Color.YELLOW.getColor());
}
}

main

ch03

public enum Color {

    /**
* 红色
*/
RED{
@Override
public void printColor() {
System.out.println("This is red.");
}
},
/**
* 蓝色
*/
BLUE{
@Override
public void printColor() {
System.out.println("This is blue");
}
}; /**
* 在枚举中声明一个抽象方法,
* 并且在每一个枚举元素中是使用匿名内部类的方式进行实现
*/
public abstract void printColor();
}

Color枚举中定义抽象方法,类似于继承重载里面的方法

ch03

public class Main {

    public static void main(String[] args) {
Color.RED.printColor();
}
}

main

ch04

public enum Color implements PrintInf {

    /**
* 红色
*/
RED{
@Override
public void printColor() {
System.out.println("This is red.");
}
},
/**
* 蓝色
*/
BLUE{
@Override
public void printColor() {
System.out.println("This is blue.");
}
}
} public enum Color2 implements PrintInf { /**
* 红色
*/
RED("red"),
/**
* 蓝色
*/
BLUE("blue")
;
private String color; Color2(String color){
this.color = color;
} @Override
public void printColor() {
System.out.println("Print color: " + color);
}
}

Color继承接口

ch04

public interface PrintInf {

    void printColor();
} public class Main { public static void main(String[] args) {
PrintInf pf = Color.RED;
pf.printColor(); Color2.RED.printColor();
}
}

接口和main

ch05

public interface Food {
/**
* 开胃菜
*/
enum Appetizer implements Food {
/**
* 沙拉
*/
SALAD("沙拉"),
/**
* 汤
*/
SOUP("汤")
;
private String foodName; Appetizer(String foodName){
this.foodName = foodName;
} public String getFoodName() {
return foodName;
}
} /**
* 主食
*/
enum MainCourse implements Food {
/**
* 千层面
*/
LASAGNE("千层面"),
/**
* 卷饼
*/
BURRITO("卷饼")
; private String foodName; MainCourse(String foodName){
this.foodName = foodName;
} public String getFoodName() {
return foodName;
}
} } public class Main { public static void main(String[] args) {
System.out.println(Food.Appetizer.SALAD.getFoodName());
}
}

Color在接口中声明枚举类型

 

enum枚举类的更多相关文章

  1. Enum枚举类|注解Annotation

    Enum枚举类 ①枚举类和普通类的差别: 使用 enum 定义的枚举类默认继承了 java.lang.Enum 类 枚举类的构造器仅仅能使用 private 訪问控制符 枚举类的全部实例必须在枚举类中 ...

  2. Java中的enum枚举类

    首先说说为什么要写这个enum枚举类吧,是群里有个新手问:怎样把enum类中的值遍历得到,其实自己用的也很少.自己也是确实不知道,于是我去网上搜了不少,总结了些,希望对大家有帮助:首先我说说怎样遍历枚 ...

  3. Enum 枚举类

    目录 Enum 枚举类 基础 定义与用途 基本方法 示例 进阶 实现原理 枚举与Class对象 自定义枚举类和构造方法及toString() Enum中使用抽象方法来实现枚举实例的多态性 Enum与接 ...

  4. Java 基础 enum枚举类 的创建/使用/接口继承 ,以及手动创建枚举类的对象为:public static final

    笔记: import java.lang.*; /**一:枚举类 : enum Season implements info { s1(),s2(),s3(),s4() }; //s1--s4 放在S ...

  5. Java Enum 枚举类的values方法

    Enum类和enum关键字定义的类型都有values方法,但是点进去会发现找不到这个方法.这是因为java编译器在编译这个类(enum关键字定义的类默认继承java.lang.Enum)的时候 自动插 ...

  6. Enum枚举类使用集合

    1.使用扩展方法使用枚举值对于的Description属性值 public static class EnumExtenstion { public static string GetDescript ...

  7. java enum 枚举类

    图一代码: public enum LogMethodEnum { WEBCSCARDVALID("返回值"), WEBCSVERIFYPASSWORD("返回值&quo ...

  8. java 枚举 类 enum

    public abstract class Enum<E extends Enum<E>> implements Comparable<E>, Serializab ...

  9. Java分享笔记:自定义枚举类 & 使用enum关键字定义枚举类

    在JDK1.5之前没有enum关键字,如果想使用枚举类,程序员需要根据Java语言的规则自行设计.从JDK1.5开始,Java语言添加了enum关键字,可以通过该关键字方便地定义枚举类.这种枚举类有自 ...

随机推荐

  1. Why Everyone Should Lift Weights

    Why Everyone Should Lift Weights by James Clear I'll say it plain and simple: you should be lifting ...

  2. 关于Eclipse for Python

    学习Python一段时间,一直用Python的IDE进行开发,过程蛮顺利,但是,基于Visual Studio的使用经验,就希望尝试一种更友好的,更方便管理项目的IDE,分别尝试了PyCharm和Ec ...

  3. 基于MGR+Atlas的读写分离尝试,以及MGR+Keepalived+Atlas自动故障转移+读写分离设想

    目的是尝试altas的读写分离,现有一套搭建好做测试的MGR(单主),于是就腿搓绳,在MGR基础上搭建altas. 复制环境准备 读写分离理论上讲,跟复制模式没有关系,atlas负责的是重定向读写,至 ...

  4. jsTree通过AJAX从后台获取数据

    页面代码: <div id="MenuTree"></div> javascript代码: $(document).ready(function ($) { ...

  5. oracl遇到的问题

    使用oracl数据库用  ALTER TABLE Students ADD CONSTRAINT PRINF_NAME_UNIQUE UNIQUE (sname) 添加唯一性约束,出现问题,报错为:a ...

  6. Educational Codeforces Round 30 D. Merge Sort

    题意:给你n和k,n代表有多少个数,k代表几次操作,求一个1到n的序列,要k次mergesort操作才能还原 Examples Input 3 3 Output 2 1 3 Input 4 1 Out ...

  7. Android 获取版本号名称工具类

    package com.example.grenaderose.redthunder.utils; import android.content.Context; import android.con ...

  8. mysql5.7.21安装要点记录

    下载的是Zip解压缩版,Windows系统,因为很久没有在Windows上安装过,这次安装发现了几处和以前安装不一样的地方,特记录如下,供大家参考 MySQL配置文件位置 bin目录下的mysql_c ...

  9. 【noip模拟赛4】Matrix67的派对 暴力dfs

    [noip模拟赛4]Matrix67的派对   描述 Matrix67发现身高接近的人似乎更合得来.Matrix67举办的派对共有N(1<=N<=10)个人参加,Matrix67需要把他们 ...

  10. LinkedIn TAG

                 List1  [leetcode]243. Shortest Word Distance最短单词距离 Two Pointers [leetcode]244. Shortest ...