Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Java by Zigeuna ( 17 years ago )
public class Konstr {
int a[];
Konstr(int... a){
}
public static void main(String[] args) {
System.out.println("Testklasse zu komischen Konstruktoren!");
int ba[]={1,2,3};
Konstr a = new Konstr(2,3,4);
Konstr b = new Konstr(1,2);
Konstr c = new Konstr(3,4,6,7);
Konstr baba=new Konstr(ba);
}
}
Revise this Paste