944,126 Members | Top Members by Rank

Ad:
  • Java Discussion Thread
  • Unsolved
  • Views: 1827
  • Java RSS
Feb 3rd, 2005
0

Help!! I'm Drowning

Expand Post »
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.
Similar Threads
Reputation Points: 10
Solved Threads: 0
Newbie Poster
jenman77 is offline Offline
2 posts
since Feb 2005
Feb 3rd, 2005
0

Re: Help!! I'm Drowning

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.
Team Colleague
Reputation Points: 1658
Solved Threads: 331
duckman
jwenting is offline Offline
7,719 posts
since Nov 2004
Feb 3rd, 2005
0

Re: Help!! I'm Drowning

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?
Reputation Points: 10
Solved Threads: 0
Newbie Poster
jenman77 is offline Offline
2 posts
since Feb 2005
Feb 4th, 2005
0

Re: Help!! I'm Drowning

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.
Team Colleague
Reputation Points: 1658
Solved Threads: 331
duckman
jwenting is offline Offline
7,719 posts
since Nov 2004
Feb 4th, 2005
0

Re: Help!! I'm Drowning

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.
Reputation Points: 113
Solved Threads: 19
Postaholic
server_crash is offline Offline
2,108 posts
since Jun 2004
Feb 4th, 2005
0

Re: Help!! I'm Drowning

Hi everyone,

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

Richard West
Reputation Points: 25
Solved Threads: 10
Practically a Master Poster
freesoft_2000 is offline Offline
623 posts
since Jun 2004
Feb 4th, 2005
0

Re: Help!! I'm Drowning

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.
Reputation Points: 10
Solved Threads: 0
Light Poster
Gink is offline Offline
46 posts
since Feb 2005
Feb 5th, 2005
0

Re: Help!! I'm Drowning

A far better and far more up to date book is Head First Java by Kathy Sierra and Bert Bates.
Team Colleague
Reputation Points: 1658
Solved Threads: 331
duckman
jwenting is offline Offline
7,719 posts
since Nov 2004

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in Java Forum Timeline: how many of you use 1.5?
Next Thread in Java Forum Timeline: String Object Immutable Confusion





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC