码迷,mamicode.com
首页 > 其他好文 > 详细

获取生肖、星座、年龄的工具类ConstellationHepler

时间:2015-03-13 18:44:58      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:工具   星座   android   

获取生肖、星座、年龄的工具类

ConstellationHepler

import java.util.Calendar;

public class ConstellationHepler {

    private static ConstellationHepler util;

    public static ConstellationHepler getInstance() {

        if (util == null) {
            util = new ConstellationHepler();

        }
        return util;

    }

    private ConstellationHepler() {
        super();
    }

    public  final String[] zodiacArray = { "猴", "鸡", "狗", "猪", "鼠", "牛",
            "虎", "兔", "龙", "蛇", "马", "羊" };

    public  final String[] constellationArray = { "水瓶座", "双鱼座", "牡羊座",
            "金牛座", "双子座", "巨蟹座", "狮子座", "处女座", "天秤座", "天蝎座", "射手座", "魔羯座" };

    public  final int[] constellationDay = { 20, 19, 21, 21, 21, 22,
            23, 23, 23, 24, 23, 22 };


    /**根据出生年份获取生肖
     * @param year
     * @return
     */
    public String date2Zodica(int year) {

        return zodiacArray[year % 12];
    }


    /**
     * 根据日期获取星座
     * @param month
     * @param day
     * @return
     */
    public String date2Constellation(int month, int day) {

        month = month - 1;
        if (day < constellationDay[month]) {
            month = month - 1;
        }
        if (month >= 0) {
            return constellationArray[month];
        }
        // 默认魔羯
        return constellationArray[11];
    }

    /**
     * 根据出生年份得到年龄
     * @param year
     * @return
     */
    public int date2Age(int year) {

        Calendar c = Calendar.getInstance();
        int y = c.get(Calendar.YEAR);
        int age = y - year;

        if (age < 0) {
            age = 0;
        }
        return age;

    }

}

使用方法

String constellation = ConstellationHepler.getInstance().date2Constellation(5, 5);
        String zodica = ConstellationHepler.getInstance().date2Zodica(1990);
        int age = ConstellationHepler.getInstance().date2Age(1990);
        System.out.println(constellation);
        System.out.println(zodica);
        System.out.println(age);

打印结果

03-13 18:13:06.559: I/System.out(19086): 金牛座
03-13 18:13:06.559: I/System.out(19086): 马
03-13 18:13:06.559: I/System.out(19086): 25

获取生肖、星座、年龄的工具类ConstellationHepler

标签:工具   星座   android   

原文地址:http://blog.csdn.net/u014580558/article/details/44244517

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!