DateTime
किसी व्यक्ति के जन्मदिन का प्रतिनिधित्व करते हुए , मैं वर्षों में उनकी आयु की गणना कैसे करूं?
DateTime
किसी व्यक्ति के जन्मदिन का प्रतिनिधित्व करते हुए , मैं वर्षों में उनकी आयु की गणना कैसे करूं?
जवाबों:
समझने में आसान और सरल उपाय।
// Save today's date.
var today = DateTime.Today;
// Calculate the age.
var age = today.Year - birthdate.Year;
// Go back to the year the person was born in case of a leap year
if (birthdate.Date > today.AddYears(-age)) age--;
हालाँकि, यह मानता है कि आप उम्र के पश्चिमी विचार की तलाश कर रहे हैं और पूर्वी एशियाई गणना का उपयोग नहीं कर रहे हैं ।
यह करने का एक अजीब तरीका है, लेकिन यदि आप तारीख को प्रारूपित करते हैं yyyymmdd
और वर्तमान तिथि से जन्म की तारीख घटाते हैं तो अंतिम 4 अंक छोड़ें जो आपको आयु मिल गई है :)
मैं C # नहीं जानता, लेकिन मेरा मानना है कि यह किसी भी भाषा में काम करेगा।
20080814 - 19800703 = 280111
अंतिम 4 अंक गिराएं = 28
।
C # कोड:
int now = int.Parse(DateTime.Now.ToString("yyyyMMdd"));
int dob = int.Parse(dateOfBirth.ToString("yyyyMMdd"));
int age = (now - dob) / 10000;
या वैकल्पिक रूप से विस्तार विधि के रूप में सभी प्रकार के रूपांतरण के बिना। चूक की जाँच में त्रुटि:
public static Int32 GetAge(this DateTime dateOfBirth)
{
var today = DateTime.Today;
var a = (today.Year * 100 + today.Month) * 100 + today.Day;
var b = (dateOfBirth.Year * 100 + dateOfBirth.Month) * 100 + dateOfBirth.Day;
return (a - b) / 10000;
}
20180101 - 20171231 = 8870
। 0
उम्र के लिए अंतिम 4 अंक और आपके पास (एक निहित) है । आपको कैसे मिली 1
?
यहाँ एक परीक्षण स्निपेट है:
DateTime bDay = new DateTime(2000, 2, 29);
DateTime now = new DateTime(2009, 2, 28);
MessageBox.Show(string.Format("Test {0} {1} {2}",
CalculateAgeWrong1(bDay, now), // outputs 9
CalculateAgeWrong2(bDay, now), // outputs 9
CalculateAgeCorrect(bDay, now), // outputs 8
CalculateAgeCorrect2(bDay, now))); // outputs 8
यहां आपके पास तरीके हैं:
public int CalculateAgeWrong1(DateTime birthDate, DateTime now)
{
return new DateTime(now.Subtract(birthDate).Ticks).Year - 1;
}
public int CalculateAgeWrong2(DateTime birthDate, DateTime now)
{
int age = now.Year - birthDate.Year;
if (now < birthDate.AddYears(age))
age--;
return age;
}
public int CalculateAgeCorrect(DateTime birthDate, DateTime now)
{
int age = now.Year - birthDate.Year;
if (now.Month < birthDate.Month || (now.Month == birthDate.Month && now.Day < birthDate.Day))
age--;
return age;
}
public int CalculateAgeCorrect2(DateTime birthDate, DateTime now)
{
int age = now.Year - birthDate.Year;
// For leap years we need this
if (birthDate > now.AddYears(-age))
age--;
// Don't use:
// if (birthDate.AddYears(age) > now)
// age--;
return age;
}
इसका सरल उत्तर है, AddYears
जैसा कि नीचे दिखाया गया है, क्योंकि यह केवल एक ही मूल विधि है, जो २. फरवरी को लीप वर्षों में जोड़ने और २ is फरवरी को आम वर्षों के लिए सही परिणाम प्राप्त करने की एकमात्र मूल विधि है।
कुछ लोगों का मानना है कि 1 मार्च का दिन छलांगों का जन्मदिन होता है, लेकिन न तो .नेट और न ही कोई आधिकारिक नियम इस बात का समर्थन करता है, और न ही सामान्य तर्क बताते हैं कि फरवरी में पैदा हुए कुछ लोगों का जन्म दूसरे महीने में 75% होना चाहिए।
इसके अलावा, एक आयु पद्धति विस्तार के रूप में खुद को जोड़ने के लिए उधार देती है DateTime
। इसके द्वारा आप आयु को सरलतम तरीके से प्राप्त कर सकते हैं:
int age = birthDate.Age ();
public static class DateTimeExtensions
{
/// <summary>
/// Calculates the age in years of the current System.DateTime object today.
/// </summary>
/// <param name="birthDate">The date of birth</param>
/// <returns>Age in years today. 0 is returned for a future date of birth.</returns>
public static int Age(this DateTime birthDate)
{
return Age(birthDate, DateTime.Today);
}
/// <summary>
/// Calculates the age in years of the current System.DateTime object on a later date.
/// </summary>
/// <param name="birthDate">The date of birth</param>
/// <param name="laterDate">The date on which to calculate the age.</param>
/// <returns>Age in years on a later day. 0 is returned as minimum.</returns>
public static int Age(this DateTime birthDate, DateTime laterDate)
{
int age;
age = laterDate.Year - birthDate.Year;
if (age > 0)
{
age -= Convert.ToInt32(laterDate.Date < birthDate.Date.AddYears(age));
}
else
{
age = 0;
}
return age;
}
}
अब, यह परीक्षण चलाएं:
class Program
{
static void Main(string[] args)
{
RunTest();
}
private static void RunTest()
{
DateTime birthDate = new DateTime(2000, 2, 28);
DateTime laterDate = new DateTime(2011, 2, 27);
string iso = "yyyy-MM-dd";
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
Console.WriteLine("Birth date: " + birthDate.AddDays(i).ToString(iso) + " Later date: " + laterDate.AddDays(j).ToString(iso) + " Age: " + birthDate.AddDays(i).Age(laterDate.AddDays(j)).ToString());
}
}
Console.ReadKey();
}
}
महत्वपूर्ण तारीख उदाहरण यह है:
जन्म तिथि: 2000-02-29 बाद की तारीख: 2011-02-28 आयु: 11
आउटपुट:
{
Birth date: 2000-02-28 Later date: 2011-02-27 Age: 10
Birth date: 2000-02-28 Later date: 2011-02-28 Age: 11
Birth date: 2000-02-28 Later date: 2011-03-01 Age: 11
Birth date: 2000-02-29 Later date: 2011-02-27 Age: 10
Birth date: 2000-02-29 Later date: 2011-02-28 Age: 11
Birth date: 2000-02-29 Later date: 2011-03-01 Age: 11
Birth date: 2000-03-01 Later date: 2011-02-27 Age: 10
Birth date: 2000-03-01 Later date: 2011-02-28 Age: 10
Birth date: 2000-03-01 Later date: 2011-03-01 Age: 11
}
और बाद की तारीख 2012-02-28 के लिए:
{
Birth date: 2000-02-28 Later date: 2012-02-28 Age: 12
Birth date: 2000-02-28 Later date: 2012-02-29 Age: 12
Birth date: 2000-02-28 Later date: 2012-03-01 Age: 12
Birth date: 2000-02-29 Later date: 2012-02-28 Age: 11
Birth date: 2000-02-29 Later date: 2012-02-29 Age: 12
Birth date: 2000-02-29 Later date: 2012-03-01 Age: 12
Birth date: 2000-03-01 Later date: 2012-02-28 Age: 11
Birth date: 2000-03-01 Later date: 2012-02-29 Age: 11
Birth date: 2000-03-01 Later date: 2012-03-01 Age: 12
}
date.Age(other)
?
मेरा सुझाव
int age = (int) ((DateTime.Now - bday).TotalDays/365.242199);
लगता है साल सही तारीख को बदल रहा है। (मैं 107 वर्ष की आयु तक परीक्षण किया गया।)
days in a year = 365.242199
एक अन्य कार्य, मेरे द्वारा नहीं, बल्कि वेब पर पाया गया और इसे थोड़ा परिष्कृत किया:
public static int GetAge(DateTime birthDate)
{
DateTime n = DateTime.Now; // To avoid a race condition around midnight
int age = n.Year - birthDate.Year;
if (n.Month < birthDate.Month || (n.Month == birthDate.Month && n.Day < birthDate.Day))
age--;
return age;
}
बस दो बातें जो मेरे दिमाग में आती हैं: उन देशों के लोगों के बारे में जो ग्रेगोरियन कैलेंडर का उपयोग नहीं करते हैं? DateTime.Now मुझे लगता है कि सर्वर-विशिष्ट संस्कृति में है। मुझे वास्तव में एशियाई कैलेंडर के साथ काम करने के बारे में बिल्कुल शून्य ज्ञान है और मुझे नहीं पता कि कैलेंडर के बीच तारीखों को बदलने का एक आसान तरीका है, लेकिन बस मामले में आप उन चीनी लोगों के बारे में सोच रहे हैं जो वर्ष 4660 :-)
2 मुख्य समस्याओं को हल करने के लिए कर रहे हैं:
1. सटीक आयु की गणना करें - वर्षों, महीनों, दिनों आदि में।
2. आम तौर पर कथित उम्र की गणना करें - लोग आमतौर पर परवाह नहीं करते हैं कि वे वास्तव में कितने साल के हैं, वे सिर्फ तब परवाह करते हैं जब चालू वर्ष में उनका जन्मदिन होता है।
1 के लिए समाधान स्पष्ट है:
DateTime birth = DateTime.Parse("1.1.2000");
DateTime today = DateTime.Today; //we usually don't care about birth time
TimeSpan age = today - birth; //.NET FCL should guarantee this as precise
double ageInDays = age.TotalDays; //total number of days ... also precise
double daysInYear = 365.2425; //statistical value for 400 years
double ageInYears = ageInDays / daysInYear; //can be shifted ... not so precise
2 के लिए समाधान वह है जो कुल उम्र निर्धारित करने में इतना सटीक नहीं है, लेकिन लोगों द्वारा सटीक माना जाता है। लोग आमतौर पर इसका उपयोग तब करते हैं, जब वे अपनी आयु की गणना "मैन्युअल रूप से" करते हैं:
DateTime birth = DateTime.Parse("1.1.2000");
DateTime today = DateTime.Today;
int age = today.Year - birth.Year; //people perceive their age in years
if (today.Month < birth.Month ||
((today.Month == birth.Month) && (today.Day < birth.Day)))
{
age--; //birthday in current year not yet reached, we are 1 year younger ;)
//+ no birthday for 29.2. guys ... sorry, just wrong date for birth
}
नोट 2:
बस एक और ध्यान दें ... मैं इसके लिए 2 स्टैटिक ओवरलोडेड तरीके बनाऊंगा, एक सार्वभौमिक उपयोग के लिए, दूसरा उपयोग-मित्रता के लिए:
public static int GetAge(DateTime bithDay, DateTime today)
{
//chosen solution method body
}
public static int GetAge(DateTime birthDay)
{
return GetAge(birthDay, DateTime.Now);
}
यहाँ एक लाइनर है:
int age = new DateTime(DateTime.Now.Subtract(birthday).Ticks).Year-1;
यह वह संस्करण है जिसका हम यहां उपयोग करते हैं। यह काम करता है, और यह काफी सरल है। यह जेफ के रूप में एक ही विचार है, लेकिन मुझे लगता है कि यह थोड़ा स्पष्ट है क्योंकि यह एक को घटाने के लिए तर्क को अलग करता है, इसलिए इसे समझना थोड़ा आसान है।
public static int GetAge(this DateTime dateOfBirth, DateTime dateAsAt)
{
return dateAsAt.Year - dateOfBirth.Year - (dateOfBirth.DayOfYear < dateAsAt.DayOfYear ? 0 : 1);
}
आप इसे स्पष्ट करने के लिए टर्नरी ऑपरेटर का विस्तार कर सकते हैं, अगर आपको लगता है कि इस तरह की बात अस्पष्ट है।
स्पष्ट रूप से यह एक विस्तार पद्धति के रूप में किया जाता है DateTime
, लेकिन स्पष्ट रूप से आप कोड की एक पंक्ति को पकड़ सकते हैं जो काम करता है और इसे कहीं भी रख सकता है। यहां हमारे पास एक्सटेंशन पद्धति का एक और अधिभार है जो DateTime.Now
पूर्णता के लिए, पास करता है ।
लीप वर्ष और सब कुछ के कारण मुझे पता है कि सबसे अच्छा तरीका है:
DateTime birthDate = new DateTime(2000,3,1);
int age = (int)Math.Floor((DateTime.Now - birthDate).TotalDays / 365.25D);
मैं इसका उपयोग करता हूं:
public static class DateTimeExtensions
{
public static int Age(this DateTime birthDate)
{
return Age(birthDate, DateTime.Now);
}
public static int Age(this DateTime birthDate, DateTime offsetDate)
{
int result=0;
result = offsetDate.Year - birthDate.Year;
if (offsetDate.DayOfYear < birthDate.DayOfYear)
{
result--;
}
return result;
}
}
यह इस प्रश्न को "अधिक विस्तार" देता है। शायद यह वही है जो आप खोज रहे हैं
DateTime birth = new DateTime(1974, 8, 29);
DateTime today = DateTime.Now;
TimeSpan span = today - birth;
DateTime age = DateTime.MinValue + span;
// Make adjustment due to MinValue equalling 1/1/1
int years = age.Year - 1;
int months = age.Month - 1;
int days = age.Day - 1;
// Print out not only how many years old they are but give months and days as well
Console.Write("{0} years, {1} months, {2} days", years, months, days);
मैंने अपनी जन्मतिथि को देखते हुए किसी की आयु की गणना करने के लिए एक SQL सर्वर उपयोगकर्ता परिभाषित फ़ंक्शन बनाया है। यह तब उपयोगी होता है जब आपको किसी क्वेरी के भाग के रूप में इसकी आवश्यकता होती है:
using System;
using System.Data;
using System.Data.Sql;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using Microsoft.SqlServer.Server;
public partial class UserDefinedFunctions
{
[SqlFunction(DataAccess = DataAccessKind.Read)]
public static SqlInt32 CalculateAge(string strBirthDate)
{
DateTime dtBirthDate = new DateTime();
dtBirthDate = Convert.ToDateTime(strBirthDate);
DateTime dtToday = DateTime.Now;
// get the difference in years
int years = dtToday.Year - dtBirthDate.Year;
// subtract another year if we're before the
// birth day in the current year
if (dtToday.Month < dtBirthDate.Month || (dtToday.Month == dtBirthDate.Month && dtToday.Day < dtBirthDate.Day))
years=years-1;
int intCustomerAge = years;
return intCustomerAge;
}
};
यहाँ अभी तक एक और जवाब है:
public static int AgeInYears(DateTime birthday, DateTime today)
{
return ((today.Year - birthday.Year) * 372 + (today.Month - birthday.Month) * 31 + (today.Day - birthday.Day)) / 372;
}
यह बड़े पैमाने पर इकाई-परीक्षण किया गया है। यह थोड़ा "जादू" दिखता है। संख्या 372 एक दिन की संख्या होती है अगर हर महीने में 31 दिन होते।
यह क्यों काम करता है इसका स्पष्टीकरण ( यहां से उठाया गया ) है:
चलिए सेट करते हैं
Yn = DateTime.Now.Year, Yb = birthday.Year, Mn = DateTime.Now.Month, Mb = birthday.Month, Dn = DateTime.Now.Day, Db = birthday.Day
age = Yn - Yb + (31*(Mn - Mb) + (Dn - Db)) / 372
हम जानते हैं कि
Yn-Yb
यदि हमें पहले ही तारीख मिल गई है,Yn-Yb-1
अगर यह नहीं है , तो हमें क्या चाहिए ।क) यदि
Mn<Mb
, हमारे पास है-341 <= 31*(Mn-Mb) <= -31 and -30 <= Dn-Db <= 30
-371 <= 31*(Mn - Mb) + (Dn - Db) <= -1
पूर्णांक विभाजन के साथ
(31*(Mn - Mb) + (Dn - Db)) / 372 = -1
बी) यदि
Mn=Mb
औरDn<Db
, हमारे पास है31*(Mn - Mb) = 0 and -30 <= Dn-Db <= -1
पूर्णांक विभाजन के साथ, फिर से
(31*(Mn - Mb) + (Dn - Db)) / 372 = -1
ग) यदि
Mn>Mb
, हमारे पास है31 <= 31*(Mn-Mb) <= 341 and -30 <= Dn-Db <= 30
1 <= 31*(Mn - Mb) + (Dn - Db) <= 371
पूर्णांक विभाजन के साथ
(31*(Mn - Mb) + (Dn - Db)) / 372 = 0
d) यदि
Mn=Mb
औरDn>Db
, हमारे पास31*(Mn - Mb) = 0 and 1 <= Dn-Db <= 3
0 हैपूर्णांक विभाजन के साथ, फिर से
(31*(Mn - Mb) + (Dn - Db)) / 372 = 0
ई) यदि
Mn=Mb
औरDn=Db
, हमारे पास है31*(Mn - Mb) + Dn-Db = 0
और इसीलिए
(31*(Mn - Mb) + (Dn - Db)) / 372 = 0
मैंने इस पर काम करने में कुछ समय बिताया है और इसके साथ आने वाले वर्षों, महीनों और दिनों में किसी की उम्र की गणना करता हूं। मैंने 29 फरवरी की समस्या और लीप वर्षों के खिलाफ परीक्षण किया है और यह काम करने लगता है, मैं किसी भी प्रतिक्रिया की सराहना करूंगा:
public void LoopAge(DateTime myDOB, DateTime FutureDate)
{
int years = 0;
int months = 0;
int days = 0;
DateTime tmpMyDOB = new DateTime(myDOB.Year, myDOB.Month, 1);
DateTime tmpFutureDate = new DateTime(FutureDate.Year, FutureDate.Month, 1);
while (tmpMyDOB.AddYears(years).AddMonths(months) < tmpFutureDate)
{
months++;
if (months > 12)
{
years++;
months = months - 12;
}
}
if (FutureDate.Day >= myDOB.Day)
{
days = days + FutureDate.Day - myDOB.Day;
}
else
{
months--;
if (months < 0)
{
years--;
months = months + 12;
}
days +=
DateTime.DaysInMonth(
FutureDate.AddMonths(-1).Year, FutureDate.AddMonths(-1).Month
) + FutureDate.Day - myDOB.Day;
}
//add an extra day if the dob is a leap day
if (DateTime.IsLeapYear(myDOB.Year) && myDOB.Month == 2 && myDOB.Day == 29)
{
//but only if the future date is less than 1st March
if (FutureDate >= new DateTime(FutureDate.Year, 3, 1))
days++;
}
}
क्या हमें उन लोगों पर विचार करने की आवश्यकता है जो 1 वर्ष से छोटे हैं? चीनी संस्कृति के रूप में, हम छोटे बच्चों की उम्र 2 महीने या 4 सप्ताह बताते हैं।
नीचे मेरा कार्यान्वयन है, यह उतना आसान नहीं है जितना मैंने कल्पना की थी, विशेष रूप से 2/28 जैसी तारीख से निपटने के लिए।
public static string HowOld(DateTime birthday, DateTime now)
{
if (now < birthday)
throw new ArgumentOutOfRangeException("birthday must be less than now.");
TimeSpan diff = now - birthday;
int diffDays = (int)diff.TotalDays;
if (diffDays > 7)//year, month and week
{
int age = now.Year - birthday.Year;
if (birthday > now.AddYears(-age))
age--;
if (age > 0)
{
return age + (age > 1 ? " years" : " year");
}
else
{// month and week
DateTime d = birthday;
int diffMonth = 1;
while (d.AddMonths(diffMonth) <= now)
{
diffMonth++;
}
age = diffMonth-1;
if (age == 1 && d.Day > now.Day)
age--;
if (age > 0)
{
return age + (age > 1 ? " months" : " month");
}
else
{
age = diffDays / 7;
return age + (age > 1 ? " weeks" : " week");
}
}
}
else if (diffDays > 0)
{
int age = diffDays;
return age + (age > 1 ? " days" : " day");
}
else
{
int age = diffDays;
return "just born";
}
}
यह कार्यान्वयन परीक्षण मामलों से नीचे पारित हुआ है।
[TestMethod]
public void TestAge()
{
string age = HowOld(new DateTime(2011, 1, 1), new DateTime(2012, 11, 30));
Assert.AreEqual("1 year", age);
age = HowOld(new DateTime(2011, 11, 30), new DateTime(2012, 11, 30));
Assert.AreEqual("1 year", age);
age = HowOld(new DateTime(2001, 1, 1), new DateTime(2012, 11, 30));
Assert.AreEqual("11 years", age);
age = HowOld(new DateTime(2012, 1, 1), new DateTime(2012, 11, 30));
Assert.AreEqual("10 months", age);
age = HowOld(new DateTime(2011, 12, 1), new DateTime(2012, 11, 30));
Assert.AreEqual("11 months", age);
age = HowOld(new DateTime(2012, 10, 1), new DateTime(2012, 11, 30));
Assert.AreEqual("1 month", age);
age = HowOld(new DateTime(2008, 2, 28), new DateTime(2009, 2, 28));
Assert.AreEqual("1 year", age);
age = HowOld(new DateTime(2008, 3, 28), new DateTime(2009, 2, 28));
Assert.AreEqual("11 months", age);
age = HowOld(new DateTime(2008, 3, 28), new DateTime(2009, 3, 28));
Assert.AreEqual("1 year", age);
age = HowOld(new DateTime(2009, 1, 28), new DateTime(2009, 2, 28));
Assert.AreEqual("1 month", age);
age = HowOld(new DateTime(2009, 2, 1), new DateTime(2009, 3, 1));
Assert.AreEqual("1 month", age);
// NOTE.
// new DateTime(2008, 1, 31).AddMonths(1) == new DateTime(2009, 2, 28);
// new DateTime(2008, 1, 28).AddMonths(1) == new DateTime(2009, 2, 28);
age = HowOld(new DateTime(2009, 1, 31), new DateTime(2009, 2, 28));
Assert.AreEqual("4 weeks", age);
age = HowOld(new DateTime(2009, 2, 1), new DateTime(2009, 2, 28));
Assert.AreEqual("3 weeks", age);
age = HowOld(new DateTime(2009, 2, 1), new DateTime(2009, 3, 1));
Assert.AreEqual("1 month", age);
age = HowOld(new DateTime(2012, 11, 5), new DateTime(2012, 11, 30));
Assert.AreEqual("3 weeks", age);
age = HowOld(new DateTime(2012, 11, 1), new DateTime(2012, 11, 30));
Assert.AreEqual("4 weeks", age);
age = HowOld(new DateTime(2012, 11, 20), new DateTime(2012, 11, 30));
Assert.AreEqual("1 week", age);
age = HowOld(new DateTime(2012, 11, 25), new DateTime(2012, 11, 30));
Assert.AreEqual("5 days", age);
age = HowOld(new DateTime(2012, 11, 29), new DateTime(2012, 11, 30));
Assert.AreEqual("1 day", age);
age = HowOld(new DateTime(2012, 11, 30), new DateTime(2012, 11, 30));
Assert.AreEqual("just born", age);
age = HowOld(new DateTime(2000, 2, 29), new DateTime(2009, 2, 28));
Assert.AreEqual("8 years", age);
age = HowOld(new DateTime(2000, 2, 29), new DateTime(2009, 3, 1));
Assert.AreEqual("9 years", age);
Exception e = null;
try
{
age = HowOld(new DateTime(2012, 12, 1), new DateTime(2012, 11, 30));
}
catch (ArgumentOutOfRangeException ex)
{
e = ex;
}
Assert.IsTrue(e != null);
}
आशा है कि यह उपयोगी है।
यह सरल रखते हुए (और संभवतः बेवकूफ :))।
DateTime birth = new DateTime(1975, 09, 27, 01, 00, 00, 00);
TimeSpan ts = DateTime.Now - birth;
Console.WriteLine("You are approximately " + ts.TotalSeconds.ToString() + " seconds old.");
अब तक का सबसे सरल तरीका यही है। यह अमेरिका और पश्चिमी यूरोप के स्थानों के लिए सही ढंग से काम करता है। अन्य स्थानों, विशेष रूप से चीन जैसे स्थानों से बात नहीं कर सकते। 4 अतिरिक्त तुलना, कम से कम, उम्र की प्रारंभिक गणना के बाद।
public int AgeInYears(DateTime birthDate, DateTime referenceDate)
{
Debug.Assert(referenceDate >= birthDate,
"birth date must be on or prior to the reference date");
DateTime birth = birthDate.Date;
DateTime reference = referenceDate.Date;
int years = (reference.Year - birth.Year);
//
// an offset of -1 is applied if the birth date has
// not yet occurred in the current year.
//
if (reference.Month > birth.Month);
else if (reference.Month < birth.Month)
--years;
else // in birth month
{
if (reference.Day < birth.Day)
--years;
}
return years ;
}
मैं इस पर जवाब देख रहा था और देखा कि किसी ने भी लीप डे बर्थ के विनियामक / कानूनी निहितार्थ का संदर्भ नहीं दिया है। उदाहरण के लिए, विकिपीडिया के अनुसार , यदि आप 29 फरवरी को विभिन्न न्यायालयों में जन्म लेते हैं, तो आप गैर-लीप वर्ष के जन्मदिन भिन्न होते हैं:
और जैसा कि मैं बता सकता हूं, अमेरिका में, क़ानून इस मामले पर चुप हैं, यह आम कानून को छोड़कर और विभिन्न नियामक निकायों ने अपने नियमों में चीजों को कैसे परिभाषित किया है।
उस अंत तक, एक सुधार:
public enum LeapDayRule
{
OrdinalDay = 1 ,
LastDayOfMonth = 2 ,
}
static int ComputeAgeInYears(DateTime birth, DateTime reference, LeapYearBirthdayRule ruleInEffect)
{
bool isLeapYearBirthday = CultureInfo.CurrentCulture.Calendar.IsLeapDay(birth.Year, birth.Month, birth.Day);
DateTime cutoff;
if (isLeapYearBirthday && !DateTime.IsLeapYear(reference.Year))
{
switch (ruleInEffect)
{
case LeapDayRule.OrdinalDay:
cutoff = new DateTime(reference.Year, 1, 1)
.AddDays(birth.DayOfYear - 1);
break;
case LeapDayRule.LastDayOfMonth:
cutoff = new DateTime(reference.Year, birth.Month, 1)
.AddMonths(1)
.AddDays(-1);
break;
default:
throw new InvalidOperationException();
}
}
else
{
cutoff = new DateTime(reference.Year, birth.Month, birth.Day);
}
int age = (reference.Year - birth.Year) + (reference >= cutoff ? 0 : -1);
return age < 0 ? 0 : age;
}
यह ध्यान दिया जाना चाहिए कि यह कोड मानता है:
TimeSpan diff = DateTime.Now - birthdayDateTime;
string age = String.Format("{0:%y} years, {0:%M} months, {0:%d}, days old", diff);
मुझे यकीन नहीं है कि आप वास्तव में इसे कैसे पसंद करेंगे, इसलिए मैंने आपको एक पठनीय स्ट्रिंग दिया।
यह प्रत्यक्ष उत्तर नहीं है, बल्कि एक अर्ध-वैज्ञानिक दृष्टिकोण से समस्या के बारे में दार्शनिक तर्क है।
मेरा तर्क है कि प्रश्न में इकाई या संस्कृति को निर्दिष्ट नहीं किया गया है, जिसमें उम्र को मापने के लिए, अधिकांश उत्तर पूर्णांक वार्षिक प्रतिनिधित्व मान रहे हैं। समय के लिए second
SI- इकाई है , एर्गो सही है जेनेरिक उत्तर होना चाहिए (निश्चित रूप से सामान्यीकृत माना जाता है DateTime
और रिलेटिव प्रभाव के संबंध में कोई ध्यान नहीं रखना चाहिए ):
var lifeInSeconds = (DateTime.Now.Ticks - then.Ticks)/TickFactor;
वर्षों में उम्र की गणना करने के ईसाई तरीके में:
var then = ... // Then, in this case the birthday
var now = DateTime.UtcNow;
int age = now.Year - then.Year;
if (now.AddYears(-age) < then) age--;
वित्त में एक समान समस्या है जब किसी गणना को अक्सर दिन गणना अंश के रूप में संदर्भित किया जाता है , जो किसी दी गई अवधि के लिए लगभग कई वर्षों तक होता है। और उम्र का मुद्दा वास्तव में एक समय मापने वाला मुद्दा है।
वास्तविक / वास्तविक के लिए उदाहरण (सभी दिन "सही ढंग से गिनना") सम्मेलन:
DateTime start, end = .... // Whatever, assume start is before end
double startYearContribution = 1 - (double) start.DayOfYear / (double) (DateTime.IsLeapYear(start.Year) ? 366 : 365);
double endYearContribution = (double)end.DayOfYear / (double)(DateTime.IsLeapYear(end.Year) ? 366 : 365);
double middleContribution = (double) (end.Year - start.Year - 1);
double DCF = startYearContribution + endYearContribution + middleContribution;
आम तौर पर समय को मापने का एक और सामान्य तरीका है "क्रमबद्ध करना" (यार जिसने इस तिथि सम्मेलन का नाम दिया है उसे गंभीरता से ट्रिप्पिन होना चाहिए):
DateTime start, end = .... // Whatever, assume start is before end
int days = (end - start).Days;
मुझे आश्चर्य है कि हमें एक सेकंड में एक सापेक्ष उम्र से पहले कितनी देर तक चलना पड़ता है, यह अब तक के जीवनकाल के दौरान पृथ्वी के चारों ओर के सूर्य-चक्रों की तुलना में अधिक उपयोगी हो जाता है :) या दूसरे शब्दों में, जब किसी अवधि को स्थान दिया जाना चाहिए या एक समारोह ही मान्य होने के लिए गति का प्रतिनिधित्व :)
यहाँ एक समाधान है।
DateTime dateOfBirth = new DateTime(2000, 4, 18);
DateTime currentDate = DateTime.Now;
int ageInYears = 0;
int ageInMonths = 0;
int ageInDays = 0;
ageInDays = currentDate.Day - dateOfBirth.Day;
ageInMonths = currentDate.Month - dateOfBirth.Month;
ageInYears = currentDate.Year - dateOfBirth.Year;
if (ageInDays < 0)
{
ageInDays += DateTime.DaysInMonth(currentDate.Year, currentDate.Month);
ageInMonths = ageInMonths--;
if (ageInMonths < 0)
{
ageInMonths += 12;
ageInYears--;
}
}
if (ageInMonths < 0)
{
ageInMonths += 12;
ageInYears--;
}
Console.WriteLine("{0}, {1}, {2}", ageInYears, ageInMonths, ageInDays);
यह सबसे सटीक उत्तरों में से एक है जो 28 फरवरी के किसी भी वर्ष की तुलना में 29 फरवरी के जन्मदिन को हल करने में सक्षम है।
public int GetAge(DateTime birthDate)
{
int age = DateTime.Now.Year - birthDate.Year;
if (birthDate.DayOfYear > DateTime.Now.DayOfYear)
age--;
return age;
}
मेरे पास आयु की गणना करने के लिए एक अनुकूलित तरीका है, साथ ही यह मदद करता है कि मामले में एक बोनस सत्यापन संदेश:
public void GetAge(DateTime dob, DateTime now, out int years, out int months, out int days)
{
years = 0;
months = 0;
days = 0;
DateTime tmpdob = new DateTime(dob.Year, dob.Month, 1);
DateTime tmpnow = new DateTime(now.Year, now.Month, 1);
while (tmpdob.AddYears(years).AddMonths(months) < tmpnow)
{
months++;
if (months > 12)
{
years++;
months = months - 12;
}
}
if (now.Day >= dob.Day)
days = days + now.Day - dob.Day;
else
{
months--;
if (months < 0)
{
years--;
months = months + 12;
}
days += DateTime.DaysInMonth(now.AddMonths(-1).Year, now.AddMonths(-1).Month) + now.Day - dob.Day;
}
if (DateTime.IsLeapYear(dob.Year) && dob.Month == 2 && dob.Day == 29 && now >= new DateTime(now.Year, 3, 1))
days++;
}
private string ValidateDate(DateTime dob) //This method will validate the date
{
int Years = 0; int Months = 0; int Days = 0;
GetAge(dob, DateTime.Now, out Years, out Months, out Days);
if (Years < 18)
message = Years + " is too young. Please try again on your 18th birthday.";
else if (Years >= 65)
message = Years + " is too old. Date of Birth must not be 65 or older.";
else
return null; //Denotes validation passed
}
यहाँ विधि कॉल और डेटाटाइम वैल्यू (MM / dd / yyyy यदि सर्वर यूएसए लोकेल पर सेट किया गया है) को पास करें। एक संदेश बॉक्स या किसी कंटेनर को प्रदर्शित करने के लिए इसे किसी भी चीज़ से बदलें:
DateTime dob = DateTime.Parse("03/10/1982");
string message = ValidateDate(dob);
lbldatemessage.Visible = !StringIsNullOrWhitespace(message);
lbldatemessage.Text = message ?? ""; //Ternary if message is null then default to empty string
याद रखें कि आप किसी भी तरह से संदेश को प्रारूपित कर सकते हैं।
इस समाधान के बारे में कैसे?
static string CalcAge(DateTime birthDay)
{
DateTime currentDate = DateTime.Now;
int approximateAge = currentDate.Year - birthDay.Year;
int daysToNextBirthDay = (birthDay.Month * 30 + birthDay.Day) -
(currentDate.Month * 30 + currentDate.Day) ;
if (approximateAge == 0 || approximateAge == 1)
{
int month = Math.Abs(daysToNextBirthDay / 30);
int days = Math.Abs(daysToNextBirthDay % 30);
if (month == 0)
return "Your age is: " + daysToNextBirthDay + " days";
return "Your age is: " + month + " months and " + days + " days"; ;
}
if (daysToNextBirthDay > 0)
return "Your age is: " + --approximateAge + " Years";
return "Your age is: " + approximateAge + " Years"; ;
}
private int GetAge(int _year, int _month, int _day
{
DateTime yourBirthDate= new DateTime(_year, _month, _day);
DateTime todaysDateTime = DateTime.Today;
int noOfYears = todaysDateTime.Year - yourBirthDate.Year;
if (DateTime.Now.Month < yourBirthDate.Month ||
(DateTime.Now.Month == yourBirthDate.Month && DateTime.Now.Day < yourBirthDate.Day))
{
noOfYears--;
}
return noOfYears;
}
निम्न दृष्टिकोण ( .NET क्लास DateDiff के लिए टाइम पीरियड लाइब्रेरी से अर्क ) संस्कृति जानकारी के कैलेंडर पर विचार करता है:
// ----------------------------------------------------------------------
private static int YearDiff( DateTime date1, DateTime date2 )
{
return YearDiff( date1, date2, DateTimeFormatInfo.CurrentInfo.Calendar );
} // YearDiff
// ----------------------------------------------------------------------
private static int YearDiff( DateTime date1, DateTime date2, Calendar calendar )
{
if ( date1.Equals( date2 ) )
{
return 0;
}
int year1 = calendar.GetYear( date1 );
int month1 = calendar.GetMonth( date1 );
int year2 = calendar.GetYear( date2 );
int month2 = calendar.GetMonth( date2 );
// find the the day to compare
int compareDay = date2.Day;
int compareDaysPerMonth = calendar.GetDaysInMonth( year1, month1 );
if ( compareDay > compareDaysPerMonth )
{
compareDay = compareDaysPerMonth;
}
// build the compare date
DateTime compareDate = new DateTime( year1, month2, compareDay,
date2.Hour, date2.Minute, date2.Second, date2.Millisecond );
if ( date2 > date1 )
{
if ( compareDate < date1 )
{
compareDate = compareDate.AddYears( 1 );
}
}
else
{
if ( compareDate > date1 )
{
compareDate = compareDate.AddYears( -1 );
}
}
return year2 - calendar.GetYear( compareDate );
} // YearDiff
उपयोग:
// ----------------------------------------------------------------------
public void CalculateAgeSamples()
{
PrintAge( new DateTime( 2000, 02, 29 ), new DateTime( 2009, 02, 28 ) );
// > Birthdate=29.02.2000, Age at 28.02.2009 is 8 years
PrintAge( new DateTime( 2000, 02, 29 ), new DateTime( 2012, 02, 28 ) );
// > Birthdate=29.02.2000, Age at 28.02.2012 is 11 years
} // CalculateAgeSamples
// ----------------------------------------------------------------------
public void PrintAge( DateTime birthDate, DateTime moment )
{
Console.WriteLine( "Birthdate={0:d}, Age at {1:d} is {2} years", birthDate, moment, YearDiff( birthDate, moment ) );
} // PrintAge
यह क्लासिक प्रश्न एक Noda Time समाधान के योग्य है ।
static int GetAge(LocalDate dateOfBirth)
{
Instant now = SystemClock.Instance.Now;
// The target time zone is important.
// It should align with the *current physical location* of the person
// you are talking about. When the whereabouts of that person are unknown,
// then you use the time zone of the person who is *asking* for the age.
// The time zone of birth is irrelevant!
DateTimeZone zone = DateTimeZoneProviders.Tzdb["America/New_York"];
LocalDate today = now.InZone(zone).Date;
Period period = Period.Between(dateOfBirth, today, PeriodUnits.Years);
return (int) period.Years;
}
उपयोग:
LocalDate dateOfBirth = new LocalDate(1976, 8, 27);
int age = GetAge(dateOfBirth);
आपको निम्नलिखित सुधारों में भी रुचि हो सकती है:
IClock
उपयोग के बजाय घड़ी में पास होने से SystemClock.Instance
परीक्षण क्षमता में सुधार होगा।
लक्ष्य समय क्षेत्र बदल जाएगा, इसलिए आप एक DateTimeZone
पैरामीटर भी चाहते हैं ।
इस विषय पर मेरा ब्लॉग पोस्ट भी देखें: जन्मदिन, और अन्य वर्षगांठ को संभालना
मैंने एक व्यक्ति की आयु की सटीक वर्ष गणना के लिए ScArcher2 के समाधान का उपयोग किया, लेकिन मुझे इसे आगे ले जाने और वर्षों के साथ-साथ उनके महीनों और दिनों की गणना करने की आवश्यकता थी।
public static Dictionary<string,int> CurrentAgeInYearsMonthsDays(DateTime? ndtBirthDate, DateTime? ndtReferralDate)
{
//----------------------------------------------------------------------
// Can't determine age if we don't have a dates.
//----------------------------------------------------------------------
if (ndtBirthDate == null) return null;
if (ndtReferralDate == null) return null;
DateTime dtBirthDate = Convert.ToDateTime(ndtBirthDate);
DateTime dtReferralDate = Convert.ToDateTime(ndtReferralDate);
//----------------------------------------------------------------------
// Create our Variables
//----------------------------------------------------------------------
Dictionary<string, int> dYMD = new Dictionary<string,int>();
int iNowDate, iBirthDate, iYears, iMonths, iDays;
string sDif = "";
//----------------------------------------------------------------------
// Store off current date/time and DOB into local variables
//----------------------------------------------------------------------
iNowDate = int.Parse(dtReferralDate.ToString("yyyyMMdd"));
iBirthDate = int.Parse(dtBirthDate.ToString("yyyyMMdd"));
//----------------------------------------------------------------------
// Calculate Years
//----------------------------------------------------------------------
sDif = (iNowDate - iBirthDate).ToString();
iYears = int.Parse(sDif.Substring(0, sDif.Length - 4));
//----------------------------------------------------------------------
// Store Years in Return Value
//----------------------------------------------------------------------
dYMD.Add("Years", iYears);
//----------------------------------------------------------------------
// Calculate Months
//----------------------------------------------------------------------
if (dtBirthDate.Month > dtReferralDate.Month)
iMonths = 12 - dtBirthDate.Month + dtReferralDate.Month - 1;
else
iMonths = dtBirthDate.Month - dtReferralDate.Month;
//----------------------------------------------------------------------
// Store Months in Return Value
//----------------------------------------------------------------------
dYMD.Add("Months", iMonths);
//----------------------------------------------------------------------
// Calculate Remaining Days
//----------------------------------------------------------------------
if (dtBirthDate.Day > dtReferralDate.Day)
//Logic: Figure out the days in month previous to the current month, or the admitted month.
// Subtract the birthday from the total days which will give us how many days the person has lived since their birthdate day the previous month.
// then take the referral date and simply add the number of days the person has lived this month.
//If referral date is january, we need to go back to the following year's December to get the days in that month.
if (dtReferralDate.Month == 1)
iDays = DateTime.DaysInMonth(dtReferralDate.Year - 1, 12) - dtBirthDate.Day + dtReferralDate.Day;
else
iDays = DateTime.DaysInMonth(dtReferralDate.Year, dtReferralDate.Month - 1) - dtBirthDate.Day + dtReferralDate.Day;
else
iDays = dtReferralDate.Day - dtBirthDate.Day;
//----------------------------------------------------------------------
// Store Days in Return Value
//----------------------------------------------------------------------
dYMD.Add("Days", iDays);
return dYMD;
}
मैंने मार्क सोएन के जवाब में एक छोटा सा बदलाव किया है : मैंने तीसरी पंक्ति को फिर से लिखा है ताकि अभिव्यक्ति को थोड़ा और आसानी से पार्स किया जा सके।
public int AgeInYears(DateTime bday)
{
DateTime now = DateTime.Today;
int age = now.Year - bday.Year;
if (bday.AddYears(age) > now)
age--;
return age;
}
मैंने इसे स्पष्टता के लिए एक समारोह में बनाया है।