• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

What's the best way to get familiar with available classes?

 
Greenhorn
Posts: 2
Android Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
With the vast number of classes now available in the language, what is the best way for new Java programmers to find the classes that would be most useful for their projects?
 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, the best reference I can suggest is
http://download.oracle.com/javase/6/docs/api/

what is the best way for new Java programmers to find the classes that would be most useful for their projects?



Everything is useful, but you need to know how efficiently you can use the features.
With good experience you will come to develop good programming skills.

Rgds
Mahesh PS
 
Saloon Keeper
Posts: 15714
367
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Mark, make sure that at least you know what classes are available in the java.lang, java.util and java.io packages. In particular, you should get plenty of practice using streams and collections.

Other packages and classes will come up as you need them. Usually when you're working on a project and you stumble into a problem that you don't know how to solve, you can search the web and it will often provide names of classes you can use.

Like Mahesh implied, practice is key.
 
Ranch Hand
Posts: 96
Eclipse IDE Oracle Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Was it on this forum that I compared it to cooking? Being a real chef is about knowing the ingredients and how to combine them. I'll let you work out the rest of the allegory ..

*Tries an impression of the Swedish chef*

Wim
 
Greenhorn
Posts: 13
Oracle Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think it helps to narrow down your focus to a subset when first learning Java.

The specific classes and areas of interest for the SCJP / OCJP exam objectives seem like a good place to start. The exam includes some essential I/O, Collections, utilities, Exceptions, and of course, the wrapper classes. ( I might have missed a few, but you get the idea. ) An SCJP preparation book can also help guide you with a little more detail, once you get an understanding of the basic language syntax.
 
snakes are really good at eating slugs. And you wouldn't think it, but so are tiny ads:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic