Name: durka 2008-02-23 17:40
What's wrong with this java statement:
IntClass number = new IntClass(console.nextInt());
It's giving me a compile error:
symbol : class IntClass
location: class Factor
IntClass number = new IntClass(console.nextInt());
I'm writing a program to factor numbers and I figured to it elegantly would be recursive. Btw, does IntClass autounbox the way Integer does?
IntClass number = new IntClass(console.nextInt());
It's giving me a compile error:
symbol : class IntClass
location: class Factor
IntClass number = new IntClass(console.nextInt());
I'm writing a program to factor numbers and I figured to it elegantly would be recursive. Btw, does IntClass autounbox the way Integer does?