简介

RT

code

package com;

import java.util.*;

public class EnumTest {
	public static void main(String... args){
		Scanner in = new Scanner(System.in);
		System.out.println("Enter a size: (SMALL, MEDIUM, LARGE, EXTRA_LARGE)");
		String input = in.next().toUpperCase();
		Size size = Enum.valueOf(Size.class, input);
		System.out.println("size = " + size);
		System.out.println("abbreviation=" + size.getAbbreviation());
		if(size == Size.EXTRA_LARGE)
			System.out.println("Good job -- you paid attention to the _.");
	}
}

enum Size{
	SMALL("S"), MEDIUM("M"), LARGE("L"), EXTRA_LARGE("XL");
	
	private Size(String abbreviation) {
		this.abbreviation = abbreviation;
	}
	public String getAbbreviation() {
		return abbreviation; // 缩写
	}
	private String abbreviation;
}
posted on 2020-07-29 18:42  HDU李少帅  阅读(91)  评论(0编辑  收藏  举报