Adbot
|
Post subject: Register and login to get these in-post ads to disappear Posted: April 28th, 2011, 12:15 pm |
|
Joined: September 9th, 2004, 1:47am Posts: 9047 Location: In your web browserz |
|
|
Top |
|
Shane
|
Post subject: Re: Beginners Java Question Posted: April 28th, 2011, 4:13 pm |
|
Joined: September 9th, 2004, 9:26 am Posts: 6991 Location: Wild Rose Country
RS Name: shane12088
RS Status: P2P
|
|
Read my articles on learning how to program. They're based in Java. They got everything from what to use to some starting exercises. http://informer.rsbandb.com/article/201 ... g-how-to-program.htmhttp://informer.rsbandb.com/article/201 ... o-program-part-2.htmAlso, what do you mean by "write the client that displays the program you wrote in Java"?
_________________
|
|
Top |
|
Burnt Joint
|
Post subject: Re: Beginners Java Question Posted: April 29th, 2011, 2:27 am |
|
Joined: October 14th, 2006, 5:44 am Posts: 538
RS Name: Saturnyne
RS Status: P2P
Clan Name: Solum
|
|
Notepad++ is good, here's the website: www.notepad-plus-plus.org
_________________
|
|
Top |
|
Adbot
|
Post subject: Register and login to get these in-post ads to disappear Posted: April 29th, 2011, 8:30 am |
|
Joined: September 9th, 2004, 1:47am Posts: 9047 Location: In your web browserz |
|
|
Top |
|
ryan1
|
Post subject: Re: Beginners Java Question Posted: May 3rd, 2011, 2:38 pm |
|
Joined: March 25th, 2005, 2:58 pm Posts: 1664 Location: Nebraska
RS Name: Ryan V 09
RS Status: Classic
|
|
You can write what is called a driver program for other classes that you write, but it is not necessary unless you're doing a pretty big project. The driver program will create a new object of the class, and then use its methods to do things.
like:
public class driverClass { public static void main(String args[]) { // Creating an object from the outside class file otherClass foo = new otherClass(Parameters to constructor);
// Using one of the object's methods foo.otherClassMethod(); } }
Not sure if this is what you were looking for.
_________________

|
|
Top |
|
newhero
|
Post subject: Re: Beginners Java Question Posted: May 4th, 2011, 7:12 pm |
|
Joined: September 7th, 2010, 7:48 am Posts: 100
RS Name: newhero
RS Status: P2P
|
|
camelCase would be also nice to learn  im sure your teacher would love it also even more is tabing your code "i know this is a forum"
_________________
|
|
Top |
|