#c# #asp.net #operator-overloading
#c# #asp.net #перегрузка оператора
Вопрос:
Я видел эту проблему с сообщением об ошибке в stackoverflow, но ни один из них не был для типа datetime или date. чтобы работать только с типом date, я создал класс типа date и написал для него некоторые перегрузки в классе date. Мой класс date
using System;
namespace Common
{
public class Date
{
private DateTime _d1;
public Date(DateTime dateTime)
{
_d1 = dateTime;
}
public static bool operator <(Date date1, Date date2)
{
bool flag = false;
//Now, get the original DateTime Type of C#
DateTime firstDate = Convert.ToDateTime(date1);
DateTime secondDate = Convert.ToDateTime(date2);
//Now compare the two DateTime variables and assign the flag to true
//if the first date is smaller than the second date
int result = DateTime.Compare(firstDate, secondDate);
if (result < 0)
{
flag = true;
}
return flag;
}
public static bool operator >(Date date1, Date date2)
{
bool flag = false;
//Now, get the original DateTime Type of C#
DateTime firstDate = Convert.ToDateTime(date1);
DateTime secondDate = Convert.ToDateTime(date2);
//Now compare the two DateTime variables and assign the flag to true
//if the first date is Greater than the second date
int result = DateTime.Compare(firstDate, secondDate);
if (result > 0)
{
flag = true;
}
return flag;
}
public static bool operator <=(Date date1, Date date2)
{
bool flag = false;
//Now, get the original DateTime Type of C#
DateTime firstDate = Convert.ToDateTime(date1);
DateTime secondDate = Convert.ToDateTime(date2);
//Now compare the two DateTime variables and assign the flag to true
//if the first date is Greater than the second date
int result = DateTime.Compare(firstDate, secondDate);
if (result <= 0)
{
flag = true;
}
return flag;
}
public static bool operator >=(Date date1, Date date2)
{
bool flag = false;
//Now, get the original DateTime Type of C#
DateTime firstDate = Convert.ToDateTime(date1);
DateTime secondDate = Convert.ToDateTime(date2);
//Now compare the two DateTime variables and assign the flag to true
//if the first date is Greater than the second date
int result = DateTime.Compare(firstDate, secondDate);
if (result >= 0)
{
flag = true;
}
return flag;
}
public static bool operator ==(Date date1, Date date2)
{
bool flag = false;
//Now, get the original DateTime Type of C#
DateTime firstDate = Convert.ToDateTime(date1);
DateTime secondDate = Convert.ToDateTime(date2);
//Now compare the two DateTime variables and assign the flag to true
//if the first date is Greater than the second date
int result = DateTime.Compare(firstDate, secondDate);
if (result == 0)
{
flag = true;
}
return flag;
}
public static bool operator !=(Date date1, Date date2)
{
bool flag = false;
//Now, get the original DateTime Type of C#
DateTime firstDate = Convert.ToDateTime(date1);
DateTime secondDate = Convert.ToDateTime(date2);
//Now compare the two DateTime variables and assign the flag to true
//if the first date is Greater than the second date
int result = DateTime.Compare(firstDate, secondDate);
if (result != 0)
{
flag = true;
}
return flag;
}
}//end of class Date
}//End of namespace
но проблема в том, что, когда я пытаюсь использовать в своем коде за страницей, он выдает мне эту ошибку — невозможно преобразовать объект типа ‘Common.Дату ‘ в тип’System.IConvertible
код, в котором я его использую, как Date purchaseDate = новая дата (item.Дата покупки); Дата отправки = новая дата (item.SubmissionDate);
if (purchaseDate>submissionSate)
{
//to do
}
здесь в объекте item дата покупки и дата отправки являются свойствами datetime, а ошибка находится в строке if
Кто-нибудь может дать мне какие-либо предложения? каково вероятное решение этой проблемы?
Ответ №1:
Вы можете напрямую получить доступ к полям Date
. Хотя я сомневаюсь в полезности этого Date
объекта.
public static bool operator <(Date date1, Date date2)
{
return date1 != null amp;amp; date2 != null amp;amp; date1._d1 < date2._d1
}
Комментарии:
1. На самом деле я написал класс date, чтобы изучить перегрузку операторов в c #, а затем, как их использовать, и r вы уверены, что часть кода —date1._d1 < date2._d1 будет работать?
2. @Pankouri — Все закрытые элементы доступны в рамках
Date
.
Ответ №2:
При >
перегрузке оператора у вас есть
DateTime firstDate = Convert.ToDateTime(date1);
DateTime secondDate = Convert.ToDateTime(date2);
и нет перегрузки, Convert.ToDateTime
которая принимает ваш Date
объект, поэтому вы вызываете Convert.ToDateTime(object)
, что требует object
реализации IConvertible.
Вы можете реализовать IConvertible
или просто сравнить _d1
значения, как упоминает @ChaosPandion.
Комментарии:
1. Не удалось правильно понять, не могли бы вы объяснить это немного подробнее? это было бы так мило с вашей стороны.
2. Если вы посмотрите на перегрузки для
Convert.ToDateTime
, вы увидите, что единственным, который может быть вызван, являетсяConvert.ToDateTime(object)
, и для того, чтобыConvert.ToDateTime
работать,object
необходимо реализоватьIConvertible
интерфейс (см. Документацию). Поскольку вашDate
класс не реализуетIConvertible
,Convert.ToDateTime(date1)
генерируется исключение.