Results 1 to 6 of 6
Thread: Compare value in array
- 03-31-2009, 02:25 PM #1
Member
- Join Date
- Mar 2009
- Posts
- 38
- Rep Power
- 0
Compare value in array
How to compare value in array?
e.g. I have Array named list which contains 12 elements.I wanted to compare the value of the array e.g. I wanted to know if index 0 equal or not equal to index 2.
I didnt get the right code. I have tried code:
Java Code:if (list.get(0)==list.get(2) { System.out.println(equal); }
- 03-31-2009, 02:35 PM #2
Senior Member
- Join Date
- Aug 2008
- Posts
- 384
- Rep Power
- 5
== only works for numeric values.
use Value1.equals(value2) for strings, or else check the api Array (Java 2 Platform SE v1.4.2)I die a little on the inside...
Every time I get shot.
- 04-01-2009, 06:56 AM #3
Senior Member
- Join Date
- Dec 2008
- Posts
- 526
- Rep Power
- 0
what list var is? Is it Vector or what
And what type list uses?
- 04-01-2009, 07:02 AM #4
Member
- Join Date
- Apr 2009
- Posts
- 17
- Rep Power
- 0
- 04-01-2009, 07:09 AM #5
Moderator
- Join Date
- Feb 2009
- Location
- New Zealand
- Posts
- 4,539
- Rep Power
- 11
If what you calling an "array" is a List (for example an instance of ArrayList), try
The point is that collections contain references to objects, not primitives and those references should be compared using equals(). Additionally you may want to be fussy about the case when list.get(0) is null.Java Code:if (list.get(0).equals(list.get(2)) { System.out.println("equal"); }
- 04-04-2009, 11:43 PM #6
Senior Member
- Join Date
- Dec 2008
- Posts
- 526
- Rep Power
- 0
Similar Threads
-
Compare a char
By Torgero in forum New To JavaReplies: 3Last Post: 02-01-2009, 03:24 PM -
How to compare Built_versions???
By KMS in forum Advanced JavaReplies: 1Last Post: 09-23-2008, 04:06 AM -
[SOLVED] How to read a file and compare Array values
By DonCash in forum Advanced JavaReplies: 2Last Post: 04-02-2008, 02:22 PM -
how to compare two strings
By elizabeth in forum New To JavaReplies: 7Last Post: 08-06-2007, 03:57 AM -
Compare 2 XML
By Peter in forum XMLReplies: 1Last Post: 07-05-2007, 02:58 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks