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?:
Code:Circle(int radius) { this.radius = radius; }Code:public void Circle(int radius) { this.radius = radius; }


LinkBack URL
About LinkBacks

Reply With Quote
to give Reputation (bottom left corner of this post)
