It's possible add an int and an String in the array ? I said in the same array.
|
No, Java is a strongly-typed language. So you cannot add a However if your array is typed as Having a catch-call array where you can shove in any object in a bad idea for many reasons:
|
|||||||||||||||
|
|
Yes it is possible, but it is not good practice.
It must be array of objects |
|||||||||||||
|
|
Strictly speaking: No.
Please note, that the Also the array must be of type |
|||
|
|
|
In your string array you could have "123" and then convert it to an int later when you need it. |
|||
|
|
|
You can't add a primitive types (including int) to an array with Objects such as String. However, autoboxing of int to Integer will make this possible if you declare an Object[] array.
Though I wouldn't recommend doing this if modeling this String and int as attributes of a class would work. |
|||
|
|
|
You can use |
|||
|
Yes it definitely is possible, just have an array of raw objects. For example:
Then you can use For example:
Note that this is not necessarily a good practise to get used to, but it does have applications. |
||||
|
|