Hi there,
Having a slight struggle trying to work out why this code won't compile, has anyone got any ideas?**
Any help is appreciated!public class ClassA { int x; int y; public ClassA(int theX, int theY) { x = theX; y = theY; } } public class ClassB extends ClassA { int z; public ClassB(int x, int y, int z) { super(x, y); this.z = z; } public ClassB(int z) { this.z = z; } }
tom