Skip to main content
summaryrefslogtreecommitdiffstats
blob: 79d64721155001fc0cd3069da21b8c564408751e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package argument_out;

public class TestVarargs5 {

	public void bar(Object... args) {
		for(Object arg: args) {
			System.out.println(arg);
		}
	}
	
	public void main() {
		String[] strings= {"Hello", "Eclipse"};
		for(Object arg: strings) {
			System.out.println(arg);
		}
	}
}

Back to the top