I searching for the shortest way (in code) to initialize list of strings and array of strings, i.e. list/array containing "s1", "s2", "s3" string elements.
|
|
There are various options. Personally I like using Guava:
(Guava's a library worth having anyway, of course :) Using just the JDK, you could use:
Note that this will return an Personally I prefer the Guava version as it makes it clear what's going on (the list implementation which will be returned). It's also still clear what's going on if you statically import the method:
... whereas if you statically import Another Guava option, if you don't want a modifiable-in-any-way list:
I typically want to either have a completely mutable list (in which case |
|||||||||||
|
All these objects exists in the JDK. PS: As aioobe stated, this makes the list fixed-sized. |
|||||
|
|
Here are a few alternatives:
When it comes to arrays, you could initialize it at the point of declaration like this:
If you need to reinitialize it or create it without storing it in a variable, you do
If the string constants are may though, it would look like
In these I usually prefer writing
|
|||||||||||||
|
|
You can use the
Be aware that the resultning list is fixed-size (you cannot add to it). |
||||
|
|