Help!! I'm Drowning

Reply

Join Date: Feb 2005
Posts: 2
Reputation: jenman77 is an unknown quantity at this point 
Solved Threads: 0
jenman77 jenman77 is offline Offline
Newbie Poster

Help!! I'm Drowning

 
0
  #1
Feb 3rd, 2005
I am taking a basic java programming class. Unfortunetly it is an online class, and I am unable to find a tutor. We are using the book Java How to Program sixth Ed. and are going through two to three chapters a week. I am soo lost!! My next lab due is to use n overloaded counstructoer to output date in muti formats such as mm/dd/yyy, june 14, 1992 and ddd yyyy. I don't know what I'm doing and just reading the book is not helping me!! I also have my midterm next week. does anyone know if there is an online tutorial that shows how to do this stuff. Not just to read text, but actual movie like things.
Reply With Quote Quick reply to this message  
Join Date: Nov 2004
Posts: 6,143
Reputation: jwenting is just really nice jwenting is just really nice jwenting is just really nice jwenting is just really nice 
Solved Threads: 212
Team Colleague
jwenting's Avatar
jwenting jwenting is offline Offline
duckman

Re: Help!! I'm Drowning

 
0
  #2
Feb 3rd, 2005
You should never expect to learn anything from just reading a textbook.
You HAVE to apply what you read immediately and frequently thereafter in real programs.

If your book has exercises, DO THEM. If it doesn't, think up some of your own.
Reply With Quote Quick reply to this message  
Join Date: Feb 2005
Posts: 2
Reputation: jenman77 is an unknown quantity at this point 
Solved Threads: 0
jenman77 jenman77 is offline Offline
Newbie Poster

Re: Help!! I'm Drowning

 
0
  #3
Feb 3rd, 2005
I do the excercizes and sometimes they work and sometimes they don't. The problem is I don't understand what I'm doing. Maybe I'm making it harder than it is I don't know. I've gotten websites and things but they say the same thing as the book. I just doesn't seem clear to me. I get some of it. I understand some symbols. but I don't know things like how to use output symbols such as %sn\ I don't get what each represents. I know where they should be used and basically they are calling information from another place in the text, but how do I use them?
Reply With Quote Quick reply to this message  
Join Date: Nov 2004
Posts: 6,143
Reputation: jwenting is just really nice jwenting is just really nice jwenting is just really nice jwenting is just really nice 
Solved Threads: 212
Team Colleague
jwenting's Avatar
jwenting jwenting is offline Offline
duckman

Re: Help!! I'm Drowning

 
0
  #4
Feb 4th, 2005
experiment, that's all I can say. Just having it explained yet another time isn't going to do much good if you don't see the logic yet.
Reply With Quote Quick reply to this message  
Join Date: Jun 2004
Posts: 2,108
Reputation: server_crash is on a distinguished road 
Solved Threads: 18
server_crash server_crash is offline Offline
Postaholic

Re: Help!! I'm Drowning

 
0
  #5
Feb 4th, 2005
You WON'T understand certain concept untill your very experienced with java. Polymorphism, inheritance, and other concepts like that aren't very difficult, but you just want grasp it starting out. I wouldn't even waste too much time looking at it, untill you have a good understanding of java, then it is very important that you study those topics. But, once you have a good understanding of the language you won't find it difficult.
Reply With Quote Quick reply to this message  
Join Date: Jun 2004
Posts: 609
Reputation: freesoft_2000 is an unknown quantity at this point 
Solved Threads: 7
freesoft_2000 freesoft_2000 is offline Offline
Practically a Master Poster

Re: Help!! I'm Drowning

 
0
  #6
Feb 4th, 2005
Hi everyone,

You can go to sun's offical website and they have some pretty good awt and swing tutorials over there

Richard West
Reply With Quote Quick reply to this message  
Join Date: Feb 2005
Posts: 46
Reputation: Gink is an unknown quantity at this point 
Solved Threads: 0
Gink Gink is offline Offline
Light Poster

Re: Help!! I'm Drowning

 
0
  #7
Feb 4th, 2005
If u dont understand deitels book read it again, best advice imo. has lots of source code to look at so u dont have to be writing programs to know what hes talking about

here are overloaded constructors

public class methodTest{
public methodTest(){ // this ones the default one
}
public methodTest(int a){
}
public methodTest(int a, int b){
}

They are overloaded because they have different signatures, if you say
methodTest obj = new methodTest();
it'll call const # 1
methodTest obj1 = new methodTest(1);
it'll call const #2
methodTest obj2 = new methodTest(1, 2);
const 3.
Reply With Quote Quick reply to this message  
Join Date: Nov 2004
Posts: 6,143
Reputation: jwenting is just really nice jwenting is just really nice jwenting is just really nice jwenting is just really nice 
Solved Threads: 212
Team Colleague
jwenting's Avatar
jwenting jwenting is offline Offline
duckman

Re: Help!! I'm Drowning

 
0
  #8
Feb 5th, 2005
A far better and far more up to date book is Head First Java by Kathy Sierra and Bert Bates.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the Java Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC