Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Feb 14th, 2006, 7:02 PM   #1
Kilo
Expert Programmer
 
Kilo's Avatar
 
Join Date: Nov 2005
Location: In Pink Clam?
Posts: 542
Rep Power: 0 Kilo is an unknown quantity at this point
Send a message via AIM to Kilo
1st Java Project

I have been convinced by my college teachers that there is a high demand for java programmers. therefore i want to enhance my java skills. I ask that someone/anyone please treat me as a noob and throw some small time projects/applications to develope at me. thanks~
__________________
"When in Rome, Do as the Romans Do"
"Beauty is in the eye of the BEER holder"
"Save your breath your going to need it for your blow up doll later"

SearchLores.org
Kilo is offline   Reply With Quote
Old Feb 14th, 2006, 7:21 PM   #2
crawforddavid2006
Expert Programmer
 
crawforddavid2006's Avatar
 
Join Date: Apr 2005
Location: Not sure yet
Posts: 572
Rep Power: 0 crawforddavid2006 is an unknown quantity at this point
Send a message via AIM to crawforddavid2006 Send a message via MSN to crawforddavid2006
Do you know any Java? This will help me determine what projects I can throw at you.
__________________
Quote:
Originally Posted by DaWei View Post
Well, it's better than Pen Islands url....;)

crawforddavid2006 is offline   Reply With Quote
Old Feb 14th, 2006, 7:59 PM   #3
King
Professional Programmer
 
King's Avatar
 
Join Date: Jan 2006
Location: Ontario, Canada
Posts: 367
Rep Power: 0 King is an unknown quantity at this point
Just start with learning the basics. first start simple console apps using loops, arrays, input/output. then learn object oriented programming. From there you can tackle more complicated topics like threads and sockets. Then move onto some GUI apps.
__________________
I am Addicted to Linux!
King is offline   Reply With Quote
Old Feb 14th, 2006, 8:12 PM   #4
Kilo
Expert Programmer
 
Kilo's Avatar
 
Join Date: Nov 2005
Location: In Pink Clam?
Posts: 542
Rep Power: 0 Kilo is an unknown quantity at this point
Send a message via AIM to Kilo
yes i know some java.. I have all basic experience. I would like to start with a console apps then move onto more complicated console apps (liek u suggested) then move onto GUIs. i have worked a little with input and output using the Scanner class. I have a big problem with creating ideas for myslef...

EDIT: I can work with arrays in C++, but i was told they are completely different in Java?
__________________
"When in Rome, Do as the Romans Do"
"Beauty is in the eye of the BEER holder"
"Save your breath your going to need it for your blow up doll later"

SearchLores.org
Kilo is offline   Reply With Quote
Old Feb 14th, 2006, 8:13 PM   #5
King
Professional Programmer
 
King's Avatar
 
Join Date: Jan 2006
Location: Ontario, Canada
Posts: 367
Rep Power: 0 King is an unknown quantity at this point
Thats a start. maybe move into some OOP programming now.. something simple just to understand how it works in java
__________________
I am Addicted to Linux!
King is offline   Reply With Quote
Old Feb 14th, 2006, 8:17 PM   #6
Kilo
Expert Programmer
 
Kilo's Avatar
 
Join Date: Nov 2005
Location: In Pink Clam?
Posts: 542
Rep Power: 0 Kilo is an unknown quantity at this point
Send a message via AIM to Kilo
yes that would be nice... ideas??
__________________
"When in Rome, Do as the Romans Do"
"Beauty is in the eye of the BEER holder"
"Save your breath your going to need it for your blow up doll later"

SearchLores.org
Kilo is offline   Reply With Quote
Old Feb 14th, 2006, 8:29 PM   #7
King
Professional Programmer
 
King's Avatar
 
Join Date: Jan 2006
Location: Ontario, Canada
Posts: 367
Rep Power: 0 King is an unknown quantity at this point
The first OOP project i did in java was a stupid beverage program. I had a super class, then 2 sub-classes which were HotDrink and ColdDrink. then i had Beer as another sub-class of ColdDrink. try coding up something stupid like that. Let me know if you need class diagrams or sample code to get started. Or just search google for some simple OOP examples.. doesnt really matter what language the example is in cause it could easily converted to java code.
__________________
I am Addicted to Linux!
King is offline   Reply With Quote
Old Feb 14th, 2006, 8:37 PM   #8
Kilo
Expert Programmer
 
Kilo's Avatar
 
Join Date: Nov 2005
Location: In Pink Clam?
Posts: 542
Rep Power: 0 Kilo is an unknown quantity at this point
Send a message via AIM to Kilo
ok i will attempt that. My problem now is my stupid PATH variable.. my teacher did it for me at school!

this is my bin path:
C:\Program Files\Java\jre1.5.0_06\bin

this is my path var:
C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\PROGRA~1\ULTRAE~1


how should i add my bin path to the path var? appending doesn't do crap
__________________
"When in Rome, Do as the Romans Do"
"Beauty is in the eye of the BEER holder"
"Save your breath your going to need it for your blow up doll later"

SearchLores.org
Kilo is offline   Reply With Quote
Old Feb 14th, 2006, 8:50 PM   #9
Kilo
Expert Programmer
 
Kilo's Avatar
 
Join Date: Nov 2005
Location: In Pink Clam?
Posts: 542
Rep Power: 0 Kilo is an unknown quantity at this point
Send a message via AIM to Kilo
[php]
public class Beverage
{
public static void main(String args[])
{
HotDrink hd=new HotDrink();

ColdDrink cd=new ColdDrink();
}
}

public class HotDrink
{

}

public class ColdDrink
{
Beer br=new Beer();
}

public class Beer
{

}
[/php]
__________________
"When in Rome, Do as the Romans Do"
"Beauty is in the eye of the BEER holder"
"Save your breath your going to need it for your blow up doll later"

SearchLores.org
Kilo is offline   Reply With Quote
Old Feb 14th, 2006, 8:55 PM   #10
Kilo
Expert Programmer
 
Kilo's Avatar
 
Join Date: Nov 2005
Location: In Pink Clam?
Posts: 542
Rep Power: 0 Kilo is an unknown quantity at this point
Send a message via AIM to Kilo
grrr if i could fix my path variable i could compile that.. (well i can anyway but im lazy)
__________________
"When in Rome, Do as the Romans Do"
"Beauty is in the eye of the BEER holder"
"Save your breath your going to need it for your blow up doll later"

SearchLores.org
Kilo is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 2:55 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC