C#如何写程序:“显示当前时间”

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#如何写程序:“显示当前时间”相关的知识,希望对你有一定的参考价值。

C#中获取当前时间方法:

DateTime 数字型

System.DateTime currentTime=new System.DateTime();
取当前年月日时分秒 currentTime=System.DateTime.Now;
取当前年 int 年=currentTime.Year;
取当前月 int 月=currentTime.Month;
取当前日 int 日=currentTime.Day;
取当前时 int 时=currentTime.Hour;
取当前分 int 分=currentTime.Minute;
取当前秒 int 秒=currentTime.Second;
取当前毫秒 int 毫秒=currentTime.Millisecond; (变量可用中文)

取中文日期显示——年月日时分 string strY=currentTime.ToString("f"); //不显示秒

取中文日期显示_年月 string strYM=currentTime.ToString("y");

取中文日期显示_月日 string strMD=currentTime.ToString("m");

取当前年月日,格式为:2003-9-23 string strYMD=currentTime.ToString("d");

取当前时分,格式为:14:24 string strT=currentTime.ToString("t");

DateTime.Now.ToString();//获取当前系统时间完整的日期和时间
DateTime.Now.ToLongDateString();//只显示日期 xxxx年xx月xx日,一个是长日期
DateTime.Now.ToShortDateString();//只显示日期 xxxx-xx-xx 一个是短日期

//今天 DateTime.Now.Date.ToShortDateString();
//昨天的 DateTime.Now.AddDays(-1).ToShortDateString();
//明天的 DateTime.Now.AddDays(1).ToShortDateString();

//本周(注意这里的每一周是从周日始至周六止)
DateTime.Now.AddDays(Convert.ToDouble((0 - Convert.ToInt16(DateTime.Now.DayOfWeek)))).ToShortDateString();
DateTime.Now.AddDays(Convert.ToDouble((6 - Convert.ToInt16(DateTime.Now.DayOfWeek)))).ToShortDateString();

//上周,上周就是本周再减去7天

DateTime.Now.AddDays(Convert.ToDouble((0 - Convert.ToInt16(DateTime.Now.DayOfWeek))) - 7).ToShortDateString();
DateTime.Now.AddDays(Convert.ToDouble((6 - Convert.ToInt16(DateTime.Now.DayOfWeek))) - 7).ToShortDateString();

//下周 本周再加上7天

DateTime.Now.AddDays(Convert.ToDouble((0 - Convert.ToInt16(DateTime.Now.DayOfWeek))) + 7).ToShortDateString();
DateTime.Now.AddDays(Convert.ToDouble((6 - Convert.ToInt16(DateTime.Now.DayOfWeek))) + 7).ToShortDateString();

//本月 本月的第一天是1号,最后一天就是下个月一号再减一天。

DateTime.Now.Year.ToString() + DateTime.Now.Month.ToString() + "1"; //第一天
DateTime.Parse(DateTime.Now.Year.ToString() + DateTime.Now.Month.ToString() + "1").AddMonths(1).AddDays(-1).ToShortDateString();//最后一天

另一种方法:

DateTime now = DateTime.Now;
DateTime d1 = new DateTime(now.Year, now.Month, 1); //本月第一天

DateTime d2 = d1.AddMonths(1).AddDays(-1); //本月最后一天

PS:
DateTime.Now.DayOfWeek.ToString();//英文星期显示,Wednesday

(int)DateTime.Now.DayOfWeek 数字,若是周三,结果对应为3

DateTime.Now.ToString("dddd", new System.Globalization.CultureInfo("zh-cn")); //中文星期显示
DateTime.Now.ToString("dddd");//中文星期显示

DateTime.Now.ToString("dddd,MMMM,dd ,yyyy", new System.Globalization.DateTimeFormatInfo());//显示日期格式Friday,July, 01,2009

DateTime.Now.ToString("dddd,dd MMMM,yyyy") //输出 星期三,30 一月,2008
参考技术A 获取时分秒:DateTime.Now.ToString("HH:mm:ss")

获取时分:DateTime.Now.ToShortTimeString()
顺便看一看这里:
www.删除掉cnblogs.删除掉com/xjtrab/articles/1878353.html
参考技术B 显示当前时间
hj5648754sfa464
参考技术C 创建个控制台应用程序
然后在默认生成的Main函数里下如下代码:
Console.WriteLine("显示当前时间:0",DateTime.Now.ToString());
Console.WriteLine("显示当前时间:0", DateTime.Now.ToShortTimeString());
Console.WriteLine("显示当前时间:0", DateTime.Now.ToShortDateString());
Console.WriteLine("显示当前时间:0", DateTime.Now.ToLongTimeString());
Console.WriteLine("显示当前时间:0", DateTime.Now.ToLocalTime());
Console.WriteLine("显示当前时间:0", DateTime.Now.ToUniversalTime());
Console.ReadLine();
看看运行后的结果就知道啦!追问

我看不懂,不能理解?为什么要写那么多的DateTime.Now?????

追答

是为了区别各个时间表达式 也不知道你想要的是2011-06-25 07:00:00还是07:00:00所以就把所有的东西全给你列上了,你要是自己看过了试过了,就知道是什么意思了!

本回答被提问者采纳
参考技术D DateTime.Now 好像是追问

我想要的是具体的代码????

追答

这也要具体代码,还是先看些教程吧,不然这样下去只会打击学习的热情

以上是关于C#如何写程序:“显示当前时间”的主要内容,如果未能解决你的问题,请参考以下文章

c#在visual studio开发环境下设计一个闹钟 小界面程序

显示当前时间

c# .net - 时间戳问题

在 Android 应用程序中显示当前时间和日期

程序员如何应对中年危机,java显示当前时间的代码

批处理命令 记录ping的结果并显示当前时间