Java help?

Sharky Forums


Results 1 to 5 of 5

Thread: Java help?

  1. #1
    Zoom-Zoom! soupnazi's Avatar
    Join Date
    May 2002
    Location
    Vancouver, BC
    Posts
    15,097

    Question Java help?

    I've learned Pascal, C++, and VB, but I'm learning Java this term and it's so confusing. It's like working backwards and it doesn't seem to use top down design. Don't even get me started on objects...those things are just weird.

    Are they any good free resources on the net that can help a beginner with Java?
    Spoiler

  2. #2
    Reef Shark bocybo's Avatar
    Join Date
    Sep 2002
    Location
    Texas
    Posts
    280
    Yeah, if you are used to structure-oriented programming in C++ ect, then the transition to Java might seem a bit different. The only real difference between java and c++(from a design standpoint) is that java forces you to use object oriented programming. If you do a google search for some java tutorials, you should find more than what you need.
    Reed's sister is sooo hot!

  3. #3
    NullPointerException rock's Avatar
    Join Date
    Sep 2000
    Location
    York, PA
    Posts
    6,203
    To be effective in Java, you really need to get the concept of object-oriented programming. It's kind of possible to do some top-down things in just a main method of some class, but you won't be taking advantage of everything OOP has to offer.

    Here's a link to Sun's tutorials and code examples: http://java.sun.com/learning/tutorial/index.html

    Open Source is free like a puppy is free.

    It's only when you look at an ant through a magnifying glass on a sunny day that you realise how often they burst into flames.

    Understanding Evolution

  4. #4
    Hammerhead Shark zackbass's Avatar
    Join Date
    Aug 2001
    Location
    MIT, Cambridge MA
    Posts
    1,692
    The OOP style of programming had me really confused for the first few weeks of class, then one day everything went "click!" and it was all better. The main thing you should do is read a lot of example programs from textbooks, they usually have pretty good structure and very good documentation that will tell you what everything does.

    I remember the thing that most people had the most trouble with was that "your code isn't the object, the code is defining the objects".
    P4 2.4C @ 3.44Ghz , 285 FSB -- Asus P4C800-E -- 512 Mb Corsair PC4000 -- Radeon 9800np 445.5/398.3 Vmodded-- 2xRaptors in RAID 0 -- Watercooled CPU, GPU and Northbridge -- Handcrafted Case

    ... And Folding Like No Tomorrow

  5. #5
    Zoom-Zoom! soupnazi's Avatar
    Join Date
    May 2002
    Location
    Vancouver, BC
    Posts
    15,097
    Thanks for the link and encouragement guys!
    Spoiler

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •