The CompareTo method is found in the .NET Framework and Java and imposes the natural ordering of a class. This is done by returning a negative integer, zero, or a positive integer as the instance of the implementing class is less than, equal to, or greater than the object it is comapred to.
-3
votes
1answer
34 views
How do I group three object arrays under one object?
Apologies for the wording, I've been at this all day and I 1/2 don't know what I'm doing.
Line 44 of the source code in the link, I want to make an object array that contains references to object ...
1
vote
3answers
46 views
hashCode(), equals(Object) and compareTo(Class)
I've following the following Vertex class and it implements equals, hashCode and compareTo method. Even then my HashMap returns null. I don't know why?
public class Vertex implements ...
2
votes
4answers
66 views
How to write hashCode method for a particular class?
I'm trying to generate a hashCode() method for my simple class but i'm not getting anywhere with it. I would appreciate any help. I've implemented the equals() method, which looks as follows, and ...
0
votes
2answers
22 views
How to make String Print
I can not figure out why when I run the program it is does not print strings. Instead, it will print out numbers.
public class Coulter_BST_String
{
public static void main(String[] args)
{
...
1
vote
3answers
88 views
Why doesn't String.CompareTo account for string length?
Given a ordered list:
var lst = new []{"1","10","2","b","ab"};
var lst2 = lst.OrderBy(c => c);
Result of lst2:
1, 10, 2, ab, b
Why does String.Compare() not also measure on the length of ...
0
votes
2answers
42 views
How do I use Java's Comparable to compare Generic objects in a tree?
Right now I'm trying to do an assignment involving creating a heap that can receive any generic object, and the nodes can compare each other by implementing the Comparable interface. Problem is, I ...
-1
votes
3answers
92 views
compareTo cannot be applied to java.util.Date (Java)
I am writing an appointment program in Java and am coming across an error which is as follows :
AppointmentNew.java:68: unreported exception java.text.ParseException; must be caught or declared to ...
0
votes
0answers
25 views
What is the advantage of using ICompareable(T).CompareTo Method over >,<,= operators when comparing int32?
MSDN talks about how ICompareable(T).CompareTo is better than the Int32.CompareTo method but I don't understand why the ICompareable(T).CompareTo method would be better than the comparison operators ...
1
vote
2answers
50 views
ClassCastException when Treeset.add(), despite implementing comparable with compareTo method
I have a class Contact that I have displayed below. I want each Contact object to have a list of other Contacts. I chose a TreeSet because I'd like to avoid duplicate Contacts in the same list. My ...
0
votes
2answers
65 views
Comparing dates in Java
I already read date functions but i cant think a best way to solve my problem.
I have a couple of dates from database which is String and i want to compare it to may current date. I am using the ...
0
votes
0answers
81 views
java linkedlist E extends Comparable<E> remove a collection of nodes
I am trying to remove a set of node from my singly linkedlist. I am having difficulty of defining starting point and ending point on the linkedlist. I am trying to use the CompareTo method. Here are ...
-3
votes
2answers
36 views
What does the interface Comparable compare in Java?
I'd like to know what the interface Comparable compares in Java.
Let's say I have two Nodes with only one instance variable each. How come node1.compareTo(node2) works?
Thanks!
1
vote
1answer
28 views
Unable to display the tax owed results correctly
Everything seems to run fine, except the tax owed displayed is always 0. I cannot figure out how to correctly get the calculations for the default or the users entries. here is the code I have any ...
1
vote
4answers
56 views
Taxpayer program won't to run all the way though [closed]
Every time I run the program it goes through the first four Taxpayers with no problem, but when it should ask me for the fifth taxpayers information it stops. I have been looking all morning for a ...
1
vote
2answers
70 views
How can I override compareTo method in a class I wrote to compare Strings stored in the class?
I wrote a class, MyClass, and each instance has a String "name" field. I want to override the compareTo method so that when called it will compare the two "name" fields of each instance.
Here is ...
0
votes
3answers
51 views
Comparable compareTo function
I'm trying to have a Comparable function compareTo two street addresses. I'm working on the String (street name) of the address at the moment. So far, I have the following code. I eventually want to ...
3
votes
2answers
57 views
Java generics, type variable scope
What's the difference between:
public <E>int compareTo(E e) // first line (compilation error)
and
public int compareTo(E e) // second line (OK)
only in the second line i get through the ...
0
votes
2answers
54 views
I am having problems with compareTo
Well, I need to make a project where I have two interfaces and they are both used in two unrelated classes. I managed to get everything else to work out properly except for the compareTo method. The ...
1
vote
5answers
52 views
Minimum string as per String#CompareTo
Ok, I'm sure that this must exist on here somewhere, but I can't seem to find it.
Is there, and if there is what is, a minimum (non-null) String sequence according to String#CompareTo?
I'm guessing ...
1
vote
3answers
57 views
error: compareTo(Object) in Car cannot implement compareTo(T) in Comparable
public int compareTo(Object another) throws CustomMadeException
{
if(this.getClass() != another.getClass() )
{
throw new CustomMadeException();
}
Car other = (Car) another;
...
5
votes
5answers
89 views
Java - modified compareTo method says it needs to return an int, but it should be returning one
I'm learning basic Java right now and have a problem with my code that I can't figure out. It's basically what the title says. My Java compiler is telling me that there's an error with my custom ...
1
vote
5answers
114 views
Internal working of the Sort() and CompareTo() methods
I've been trying to figure out how the CompareTo() method works internally and I failed. I've searched this site and read some posts, and I think I've seen all there is to see in MSDN about this ...
0
votes
1answer
254 views
Java Sorting an Arraylist of strings, by comparing each value to eachother [closed]
I have a question on an assingnment:
<pre>
The objective of this exercise is to write a program that reads a number of Strings and sorts them by
inserting each string into the appropriate place ...
3
votes
2answers
518 views
How to sort a linked list with objects in java
I've created a linked list (generic containers) with objects in Java. I need to re-write my insert-method to make the list sorted alphabetically by keys. This is my code so far:
Container:
class ...
-1
votes
2answers
73 views
How to find which string is greater?
The result has to be a string greater than the word "END".
Here is what I've done so far but its just not working.
System.out.println("Write a word. The word "END" terminates the program");
String ...
2
votes
4answers
107 views
Java Comparable to Instance or String
I'm trying to create a class that can either be compared to an instance of the same class, or to String.
For example, consider the following:
public class Record implements Comparable<Record> ...
3
votes
1answer
77 views
Java no autoboxing for int for compareTo method?
class Test{
public static void main(String[] args){
int a = 1;
int b = 5;
Integer c = new Integer(1);
Integer d = 5; //autoboxing at work
...
0
votes
1answer
99 views
How do you properly use the compareTo method implemented in String?
So I created a the employee object and a driver. The driver contains an ArrayList of Employees, and this particular method returns the Employee whose name comes first alphabetically.
Let's add two ...
0
votes
1answer
42 views
Need help overriding compareTo
I'm a Java novice that is having some trouble overriding the compareTo method in the Comparable interface. My code creates a HashMap that associates strings to an int. I would like to override ...
0
votes
2answers
179 views
Why is Java 'Comparable' better than just using a compareTo method?
I see that Comparable interface allowed implementation of just the compareTo method. So why do we even need this interface? Why can't we simply define and declare the method in any class we want, ...
0
votes
1answer
77 views
compare data in string [closed]
I have a file in txt as below:
name_a 41 feature_a
name_c 22 feature_c
name_b 33 feature_b
how can I generate a new file as below:
name_c 22 feature_c
name_b 33 feature_b
...
-1
votes
1answer
83 views
Rules to implement compare method
like compareTo, that have to be "reflexive, antisymmetric and transitive", are there any rules to implement the compare method??
thanks
7
votes
3answers
144 views
Scala idiom for ordering by multiple criteria
I want to do something like this:
class Foo extends Ordered[Foo] {
val x
val y
val z
.
.
.
.
def compare(that: Foo) = {
val c0 = this.length compareTo that.length ...
2
votes
2answers
102 views
IComparable<T>.CompareTo compares with null in Sort
I want to sort a list with the help of IComparable<T>.CompareTo for a type T called Path. I wrote
var shortest = new List<Path>();
//Fill shortest with elements != null
if ...
0
votes
3answers
212 views
SortedSet transform
I have the following case:
SortedSet<MyClass> sortedSet = ...;
SortedSet<HeavyToCompare> newSet = ...;
for (MyClass m: sortedSet ){
newSet.add(m.getHeavyToCompare())
}
I want to ...
1
vote
5answers
154 views
How can I sort a string with integers in Java?
I have got an array. Each space in my array holds two strings (one string contains just letters, the other one numbers).
What I am trying to do now is to sort the array either alphabetically or ...
3
votes
4answers
77 views
string.compareTo(string) not yielding correct results on sort
I have a list view with place distances, as shown below:
100
200
300
400
500
50
600
70
40
i need to sort this place distances in both ascending and descending order. So wat i did was, sorting the ...
1
vote
4answers
250 views
Sorting a list with two parameters using CompareTo
I am presently sorting a C# list using the 'CompareTo' method in the object type contained in the list. I want to sort ascendingly all items by their WBS (Work Breakdown Structure) and I can manage ...
0
votes
2answers
140 views
creating a file from two other files
I have such code so far:
private void button3_Click(object sender, EventArgs e)
{
label1.Visible = true;
label2.Visible = true;
var items = File.ReadAllLines("updated database ...
1
vote
2answers
82 views
Getting the error, 'compareTo' is not a member of 'RockPaperScissors.Weapons' in VB.NET
I'm new to programming and OOP so please forgive me for my lack of knowledge.
As part of my Rock, Paper and Scissors game I have a abstract superclass (Weapon) which has subclasses (Rock, Paper and ...
0
votes
1answer
82 views
How to use CompareTo to sort the PlaneMap by Ascending and Descending order
Im trying to sort my planes by Ascending and Descending order. I have a hashmap of planes and i want to compare them so that i can get the next plane due and last plane due by sorting the map by ...
-2
votes
2answers
111 views
Version object is comparing two versions incorrectly
I am using the Version object in order to run a CompareTo against two version numbers and making X happen if the version is >= versionA.
My issue is that in the below code, the CompareTo is ...
1
vote
1answer
108 views
How to use compareTo to arrange flights by descending order
I am creating a flight controller application. A bit of functionality that i want is to be able to tell the user what the next flight is according to a specific airline. I have a hash map which ...
-1
votes
1answer
152 views
Array List Loop Out of Bounds
I've got this code which I am developing below. I want to loop through two array lists, the first list I want to look at every entry, the second I only want to look at every 3rd entry and see if they ...
0
votes
2answers
83 views
How to use compareTo() against single specified member variable
Please could someone suggest the best possible solution to the following problem (this is part of a program I am trying to code) :
I have a class Foo with member variables and another class Bar which ...
1
vote
5answers
722 views
What integer does DateTime.CompareTo actually return?
I have been looking for an answer for some time now, but nowhere could I actually find it.
I was especially looking at this page. There it says that the CompareTo method returns an integer indicating ...
2
votes
4answers
99 views
Using a comparator and a separate compareTo method for a PriorityQueue
If I have a PriorityQueue made up of T objects, and T has a compareTo() method and implements comparable, but my PriorityQueue also takes a comparator as a parameter, what is my PriorityQueue going to ...
0
votes
2answers
67 views
getClass() not working?
public int compareTo(Object a) {
int Output = 0;
if(this.equals(a))
Output = 0;
if(a instanceof this.getClass()) {
if(this._numDec > ...
0
votes
0answers
162 views
iReport - comparing two date fields
I am trying to compare two date values in iReport and am unable to get it to work correctly. The below code is resident in the Text Field Expression property of a detail line. Some notes on the ...
5
votes
2answers
132 views
Why (“abc”+char.MaxValue).CompareTo(“abc”)==0?
I have a sorted array of strings.
Given a string that identifies a prefix, I perform two binary searches to find the first and last positions in the array that contain words that start with that ...





