Lernen am Sonntag

This commit is contained in:
2019-11-17 17:06:42 +01:00
parent 6670af736f
commit ffaf3279b8
8 changed files with 177 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ class InterfaceImplementer extends AbstractClass implements SuperInterface1, Sup
public void methode (int ...name ) {
// methode2(1,3,4); // Geht nicht, muss Array sein
methode2(name);
}
public void methode2 (int[] name) {