diff options
author | Lars Grefer <eclipse@larsgrefer.de> | 2020-08-15 16:30:09 +0200 |
---|---|---|
committer | Lars Grefer <eclipse@larsgrefer.de> | 2020-08-15 16:36:00 +0200 |
commit | 3641f1626df6b9b1c11dd3f16b01a01495f4662d (patch) | |
tree | 2957ce458f23462b6ec0777ddded5d854233d880 /testing/src | |
parent | 2debfa05f43a6fe71e7bc141f4f78c66f85c95b0 (diff) | |
download | aspectj-3641f1626df6b9b1c11dd3f16b01a01495f4662d.tar.gz aspectj-3641f1626df6b9b1c11dd3f16b01a01495f4662d.zip |
Collection.toArray() call style
There are two styles to convert a collection to an array: either using a pre-sized array (like c.toArray(new String[c.size()])) or using an empty array (like c.toArray(new String[0]).
In older Java versions using pre-sized array was recommended, as the reflection call which is necessary to create an array of proper size was quite slow. However since late updates of OpenJDK 6 this call was intrinsified, making the performance of the empty array version the same and sometimes even better, compared to the pre-sized version. Also passing pre-sized array is dangerous for a concurrent or synchronized collection as a data race is possible between the size and toArray call which may result in extra nulls at the end of the array, if the collection was concurrently shrunk during the operation.
Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
Diffstat (limited to 'testing/src')
-rw-r--r-- | testing/src/test/java/org/aspectj/testing/util/options/Values.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/src/test/java/org/aspectj/testing/util/options/Values.java b/testing/src/test/java/org/aspectj/testing/util/options/Values.java index af81692b7..de35c8c67 100644 --- a/testing/src/test/java/org/aspectj/testing/util/options/Values.java +++ b/testing/src/test/java/org/aspectj/testing/util/options/Values.java @@ -402,7 +402,7 @@ public class Values { } } } - return (String[]) list.toArray(new String[list.size()]); + return (String[]) list.toArray(new String[0]); } private final Option.Value[] values; |