gpt4 book ai didi

c# - 年的参数类型

转载 作者:可可西里 更新时间:2023-11-01 08:14:36 26 4
gpt4 key购买 nike

我正在编写一个接受年份作为参数的方法。 IE。等于或小于当前年份的四位数。日历只是公历(目前......不确定 future ),我肯定不需要任何 BC。

我要使用哪种数据类型?显而易见的解决方案是使用 DateTime 或 Int32:

public void MyFunction(DateTime date)
{
// year to work with: date.Year;
// date.Month, date.Day, etc. is irrelevant and will always be
}

public void MyFunction(Int year)
{
if ( year > 9999 || otherValidations == false )
{
//throw new Exception...
}

// year to work with: new DateTime(year, 1, 1);
}

除了编写我自己的自定义数据类型 Year 之外,还有其他选择吗?

最佳答案

int 在大多数情况下都可以正常工作。

这就是 DateTime.Year 的含义,也是 DateTime 构造函数接受的内容,因此除非您有特定原因需要另一种数据类型,否则整数可能是最容易使用的东西。

关于c# - 年的参数类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8361386/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com