What do the 3 dots following String in the following method mean?
String
public void myMethod(String... strings){ // method body }
String... is the same as String[]
String...
String[]
import java.lang.*; public class MyClassTest { //public static void main(String... args) { public static void main(String[] args) { for(String str: args) { System.out.println(str); } } }