千家信息网

C#实现中国农历日历操作类的代码分享

发表于:2024-12-12 作者:千家信息网编辑
千家信息网最后更新 2024年12月12日,本篇内容主要讲解"C#实现中国农历日历操作类的代码分享",感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习"C#实现中国农历日历操作类的代码分享"吧! pr
千家信息网最后更新 2024年12月12日C#实现中国农历日历操作类的代码分享

本篇内容主要讲解"C#实现中国农历日历操作类的代码分享",感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习"C#实现中国农历日历操作类的代码分享"吧!

    private static int leapDays(int y)    {        if (leapMonth(y) != 0)        {            if ((lunarInfo[y - 1900] & 0x10000) != 0)                return 30;            else                return 29;        }        else            return 0;    }    private static int leapMonth(int y)    {        return (int)(lunarInfo[y - 1900] & 0xf);    }    private static int monthDays(int y, int m)    {        if ((lunarInfo[y - 1900] & (0x10000 >> m)) == 0)            return 29;        else            return 30;    }    private static String AnimalsYear(int y)    {        return Animals[(y - 4) % 12];    }    private static String cyclicalm(int num)    {        return (Gan[num % 10] + Zhi[num % 12]);    }    private static String cyclical(int y)    {        int num = y - 1900 + 36;        return (cyclicalm(num));    }

到此,相信大家对"C#实现中国农历日历操作类的代码分享"有了更深的了解,不妨来实际操作一番吧!这里是网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

0