• 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
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

Generics on Exam

 
Ranch Hand
Posts: 49
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

I am preparing for SCJP 5. In K&B's SCJP book, I read in Generics & Collection s topic, that most of the java developers and critics are not like the Generics added in Java 1.5!

Now my doubt is, Will the exam cover more questions from Generics or not?
.

Thanks in Advance.
 
Ranch Hand
Posts: 381
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Exam will contain some really good quesion from generics.
Who said that most of the developers criticizes Generic?
 
Ranch Hand
Posts: 637
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Most of the developers said so!

You can look for arguments on the web about the developer community's reaction to the introduction of generics into Java.

Sorry no time to look up some links for you, but when there's google there is ...
 
Ranch Hand
Posts: 751
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I love generics! I happen to be on the same chapter myself. I don't have my book beside me right now but is it on chapter 6? I think the last half chapters (6-10) are the most exciting parts and would be given a lot of focus on the exam.
 
Ranch Hand
Posts: 70
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Generics Rock!

I just started using them at work, and they make things so much easier!

Thanks,
Richard
 
Bartender
Posts: 6663
5
MyEclipse IDE Firefox Browser Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

they make things so much easier!



That actually depends. If you use it extensively with the loads of 'exceptions to rules' that it comes with, it can actually be a pain. I find the the following to be the most useful

Arraylist <bla> list = new ArrayList<bla>();

That helps reduce run time errors a touch, but I just dont feel compelled to use it for any other purpose.
 
A wop bop a lu bob a womp bam boom. Tutti frutti ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic