Computer Science Canada How would I implement my classes into my program? |
Author: | Benner [ Wed Apr 10, 2013 9:01 pm ] | ||||||||
Post subject: | How would I implement my classes into my program? | ||||||||
Hi. For a school project I was instructed to create a class(s) that contain methods and variables relating to a game, for example everything from appearance of a character, to stats such as that character's strength, health, etc. In my program I created two classes (class1 and class2) that have all of the methods and variables I need. I made another class that creates a swing interface (swingclass) to display the information and change it etc through methods in the two classes. Once I finish the code for swingclass I need to be able to open the interface in which it is able to interact with all the methods and variables in the 2 other classes. My dilemma is I don't know what to do in terms of using my classes to create the program. I need my swingclass to have access to class1 and class2's methods. I need class1 and class2 to have access to eachother's methods. Right now my main method in my main class is empty and I don't know what to do. Any help would greatly be appreciated... thanks. If you are familiar with RPG games, this will be helpful I assume. Class1 contains methods and variables about the character (name, gender, inventory, level, xp etc) while class2 contains methods and variables about the character's class (stats like strength, stamina, health). These two classes need to use eachother's methods. On top of this my guiclass needs to be able to use all of the methods in both of the classes. Any help at all would greatly be appreciated. I'm sorry if my code looks like a mess. I'm think I should just paste the important bits but then again I'm not sure which parts are important for what I need to do. MainClass
Class1
Class2
SwingInterfaceClass
|
Author: | Panphobia [ Wed Apr 10, 2013 9:43 pm ] |
Post subject: | RE:How would I implement my classes into my program? |
Wouldn't it be easier to make the character class abstract, just wondering that's how I'd do it, make Character class abstract and then Warrior class would extend it, and you could just call the super class in the warrior constructor, and by the way what have you already learned about OOP? |
Author: | Benner [ Wed Apr 10, 2013 9:58 pm ] |
Post subject: | Re: How would I implement my classes into my program? |
I'm new to programming and I don't know a lot of java. All I know about OOP at this point is how to create a basic class and use them from the class which I created an object for them in. If this is beyond my level right now I guess I could do something more simple for my project. I'll look up information of extending classes and abstract classes though and hopefully that will help me with what i want to do. thanks |
Author: | Panphobia [ Wed Apr 10, 2013 10:19 pm ] |
Post subject: | RE:How would I implement my classes into my program? |
If you have any trouble understanding my explanation please tell me, I just re read it and cringed. |
Author: | Benner [ Thu Apr 11, 2013 4:10 pm ] |
Post subject: | Re: How would I implement my classes into my program? |
My question was worse, don't worry lol. I found a website that explains inheritance and polymorphism and I used my knew knowledge in my program! thanks ![]() |
Author: | Benner [ Fri Apr 12, 2013 5:05 pm ] | ||||
Post subject: | Re: How would I implement my classes into my program? | ||||
Hi, I'm not sure if I should create a new thread or not... I am getting a error that I've read is caused by an infinite loop. /* Exception in thread "AWT-EventQueue-0" java.lang.StackOverflowError at chapter7project.Chapter7project.<init>(Chapter7project.java:113) at chapter7project.GUI.<init>(GUI.java:6) this repeats it self 100+ times */ My main class contains the code for creating my swing gui. I then have a class called GUI that contains methods to update different parts of the gui. GUI extends my main class. my main class creates an object of GUI. I believe this is causing an infinite loop. When I remove the code that instantiates the GUI object the error goes away. Is there something I can do to fix this? I can probably just put the methods into my main class but I would like to know how to fix/avoid this for future reference. below is the part of my code that I believe is the focus, but Ill put a pastebin link to the full code of the two classes just in case. Thanks main class code
GUI Class
Main class full code: http://pastebin.com/knkPwiJX GUI full code: http://pastebin.com/FhYvbDyK In my main class I put -----------------------------GUI object beside the parts that I referenced above I hope this isn't asking for too much ![]() |
Author: | wtd [ Fri Apr 12, 2013 6:39 pm ] | ||
Post subject: | RE:How would I implement my classes into my program? | ||
It causes me almost physical discomfort to see this. Arrays are your friends. ![]() |
Author: | Benner [ Fri Apr 12, 2013 6:58 pm ] |
Post subject: | Re: How would I implement my classes into my program? |
creating arrays for swing components never occurred to me... the amount of time you just saved me is huge... thank you ![]() I'm aware my code is very bad, I'm a beginner cut me some slack lol |
Author: | wtd [ Fri Apr 12, 2013 7:07 pm ] |
Post subject: | RE:How would I implement my classes into my program? |
If I cut new programmers slack, they'd learn less, so... no. |
Author: | Benner [ Fri Apr 12, 2013 7:22 pm ] |
Post subject: | Re: How would I implement my classes into my program? |
dont get me wrong, I want any and all criticism... I want to get better! It's just that this problem has kept me from continuing my project for a few hours now and I can't continue until I fix it. |