Tagged Questions

4
votes
1answer
161 views

Problem with CompareTo

I am trying to implement a sorted list. I have created the class I want to have stored in the list, but for some reason when I try and run the sort the sort method I get an exception thrown. It ...
3
votes
4answers
181 views

How to compare two datetimes

I wonder how to compare two DateTime objects in .NET using DateTime methods Compare, CompareTo or Equals without comparing ticks. I only need a tolerance level of milliseconds or seconds. How can ...
1
vote
3answers
175 views

Creating compareTo method in java with one parameter

I have a question about making a compareTo function in Java. In Java, we have the String.compareTo(String) method. However, I need to make a compareTo function with only only parameter, like: ...
1
vote
7answers
768 views

In Java what should I use for a PriorityQueue that returns the greatest element first?

Java's PriorityQueue places the least element at the head of the list, however I need it to place the greatest element at the head. What what's the neatest way to get a priority queue that behaves ...
0
votes
1answer
432 views

Comparing .Net Version instance using CompareTo does not work as expected

The Version class in .Net does not implement the CompareTo interface as I would expect, it seems to handle the compare alphanumerically instead of comparing the four numbers. Maybe not a bug, but a ...