| Author |
Problems with Constructors and Drawing a Car
|
Mathew Dodge
Greenhorn
Joined: Jun 18, 2012
Posts: 2
|
|
Hello All,
I was attempting to write a code which would create a car class. Then display two cars on a screen. The problem is I keep getting a couple errors.
It seems that the car constructor is not being created before the CarComponent class creates the object. But I don't really know what to do..... Thanks!
___________________________________
_________________________________________________________
|
 |
Greg Charles
Bartender
Joined: Oct 01, 2001
Posts: 2536
|
|
Hi Mathew, welcome to Java Ranch!
First, please use code tags when posting code samples. They make the code much easier to read. I've added them for you above.
Now, what kind of errors are you getting? Compile errors, run time exceptions, wrong behavior? On a quick scan, I see you defined your Car class with a capital C, but you've written the constructor with a lowercase c. The constructor name has to match the class name exactly, even the case. That mismatch will cause a compile error. If it still doesn't compile after you fix that, post the messages the compiler gives you and we'll try to figure it out together.
|
 |
Darryl Burke
Bartender
Joined: May 03, 2008
Posts: 4163
|
|
|
In addition to what Greg said, don't construct new Cars in the paintComponent(...) override. Painting methods are for painting, and painting alone. You have absolutely no control over how often or how many times that method will be called.
|
luck, db
There are no new questions, but there may be new answers.
|
 |
Mathew Dodge
Greenhorn
Joined: Jun 18, 2012
Posts: 2
|
|
|
Thanks to both of you! You're more helpful than my programming professor.... It was the lower case letter in the car constructor which was causing the error. That was something that I just wouldn't have seen! Thank you both again!
|
 |
 |
|
|
subject: Problems with Constructors and Drawing a Car
|
|
|