Using CFML (ColdFusion Markup Langauge, aka ColdFusion), how can you compare if two single dimension arrays are the same?
|
|
Assuming all of the values in the array are simple values, the easiest thing might be to convert the arrays to lists and just do string compares.
Not as elegant as other solutions offered, but dead simple. |
||
|
|
|
All of these solutions check that two arrays are equal. They don't check that they are the same object. The only way I know to do that in native CF is to change the object in some way and see if both references have the change in. I also think that you should be wary of relying on CF implementing certain java classes or exposing methods. These are liable to change. As for comparing two arrays to see if the contents is the same, why not just Check the length (if different return false) If the lengths are the same from 1 to array len and check the elements are the same break and return false if they are not. This will work for simple values. |
||
|
|
|
|
I was looking into using CF's native Java objects awhile back and this question reminded me of a few blog posts that I had bookmarked as a result of my search.
Another resource I found shows how you can use the native Java Array class to get unique values and to create custom sorts functions in case you need to sort an array of dates, for instance. http://www.barneyb.com/barneyblog/2008/05/08/use-coldfusion-use-java/ This second link contains links to other posts where the author shows how to use other Java classes natively to gain either functionality or speed over CF functions. |
||
|
|
|
|
To build on James' answer, I thought that JSON might be preferrable over WDDX. In fact, it proves to be considerably more efficient. Comparing hashes is not that expensive, but serializing the data and then generating the hash could be (for larger and/or more complex data structures).
Here's the output that the above code generates on my machine:
While the data structure I'm serializing is fairly complex, it could easily be considered small. This should make the efficiency of JSON serialization over WDDX even more preferrable. At any rate, if I were to try to write a "compareAnything" method using hash comparison, I would use JSON serialization over WDDX. |
||
|
|
|
|
Jasons answer is certainly the best, but something I've done before is performed a hash comparison on objects that have been serialised to WDDX. This method is only useful for relatively small arrays, but it's another option if you want to keep it purely CFML. It also has the benefit that you can apply the method to other data types as well... Edit: Adams' entirely right (as you can see from his numbers) - JSON is much more economical, not only in this situation, but for serialization in general. In my defense I'm stuck using CFMX 6.1 that has no inbuilt JSON functions, and was trying to avoid external libs. |
|||
|
|
|
|
The arrayCompare() user-defined function at cflib should do it http://cflib.org/index.cfm?event=page.udfbyid&udfid=1210 |
||
|
|
|
|
There's a very simple way of comparing two arrays using CFML's underlying java. According to a recent blog by Rupesh Kumar of Adobe (http://coldfused.blogspot.com/), ColdFusion arrays are an implementation of java lists (java.util.List). So all the Java list methods are available for CFML arrays. So to compare 2 arrays all you need to do is use the equals method. It returns a YES if the arrays are equal and NO if they are not.
Array2 equals Array1 #array2.equals(array1)# (returns a NO) |
||
|
