Twinkie
Banned
- Messages
- 1,389
- Reaction score
- 12
- Points
- 0
Another one of my famous quick questions (Java noob):
I have an error:
http://i33.tinypic.com/o7368g.png
and a source:
http://pastebin.com/d732cdaba
when compiled produces:
http://pastebin.com/m7ea0a6ba
Whats wrong?
Problem semi-solved:
Netbeans didn't recognize the int constructor, what is the difference between these two constructors, or is Netbeans just having a fit?:
I have an error:
http://i33.tinypic.com/o7368g.png
and a source:
http://pastebin.com/d732cdaba
when compiled produces:
http://pastebin.com/m7ea0a6ba
Whats wrong?
Problem semi-solved:
Netbeans didn't recognize the int constructor, what is the difference between these two constructors, or is Netbeans just having a fit?:
Code:
Circle(int radius) {
this.radius = radius;
}
Code:
public void Circle(int radius) {
this.radius = radius;
}
Last edited: