+ 1
Where are the array brackets
array brackets
3 Réponses
+ 11
1)String str []=new String[2];
str [0]="Amie";
str [1]="Jensen";
2)String str []={"Amie","Jensen"};
+ 3
in reference to [what]
0
sorry I should have been more clear, I know when I write the main method they go after String [ ] but on my phone I cannot find those specific brackets they have the curly braces and regular parentheses but not the array brackets am I not looking in the right place?