JavaTXCompilerInJavaTX/bin/mycompiler/test/trivial/TestConstructor.jav
2013-10-18 13:33:46 +02:00

20 lines
252 B
Java
Executable File

import java.util.Stack;
public class TestConstructor {
Integer i;
Stack s;
public TestConstructor() {
i=3;
s=new Stack();
}
public TestConstructor(a) {
a=4;
}
public TestConstructor(java.lang.Integer a, Stack b) {
i=a;
s=b;
}
}