What are some good java interview questions and answers regarding generics and annotations?
|
|
This test: http://tests4geeks.com/test/java contains some questions about annotations. It does not contain any questions about generic. But instead of it, there are some other interesting themes like: Multi-Threading, Memory, Algorithms and Data Structures, OOP, etc. |
|||
|
|
|
Question: How can you determine what type of object a generic is using at runtime? Answer: It is not possible to determine the type because of type erasure. |
|||||||||
|
|
Since Java 5 came out, I have seen dozens of people not understand why, given an interface To test a person's ability to reason about Generics, then I would first ask them if it is possible to assign an
At this point it should be pretty easy and I would be a bit worried if they couldn't construct such an example. An example is
|
|||
|
|
Harder:
|
|||||||
|
|
Generics: Ask a question designed to see if they understand type erasure. Annotations: Ask them what their favorite annotation is, and how it works (you don't need a detailed technical explanation, but you're looking for something more than "magic"). |
|||
|
|
If you are looking for a rock star Java programmer, you could create quite a few advanced questions from the Generics chapter in Bloch's Effective Java. Things like the homogeneous or heterogenous containers (the bird cage and lion cage examples from one of the java tutorials), erasure, etc. In less senior folks I primarily look for an understanding of why one would want generics (you'd be surprised how many folks don't appreciate that and believe the Java 2 way of doing things still rules), and things like that. In annotations, I like asking about the "Override" annotation and its benefits. I also like having a deeper discussion about the pros and cons of annotations and when it is appropriate to use them - I'm not a fan of overzealous meta programming. It's also a good chance to see if someone used Hibernate or JUnit with annotations. |
|||
|
|
Here are a few I just made up: -- [Cagey generics] Would uncommenting any of these lines cause problems? Which ones, if any? Why or why not?
-- [Constraints] Only -- [Legal troubles] You cannot instantiate an array of a generic type. Thus, something like Answers left as an exercise to the reader -- you're not going to learn anything if you don't figure them out yourself! But here are some hints.
|
|||
|
|
|
"What type of things are annotations good at?" and "what type of things are annotations bad at?" comes to mind. Annotations are good at meta-programming, but as a possible best-practice, code that worked with the annotations in should still work if you take all of them out. Or not. Your mileage may vary, but you probably want all of your senior developers to agree on that one. |
|||
|
|
Q: What is the difference between a Hashmap and a Hashtable? A: Hashtable is synchronized, Hashmap is not.
Q: Describe serializing java objects with the javax.xml.bind.Marshaller interface and annotations. A: Describing something like this in a meaningful context ought to be acceptable:
|
|||||
|
|
Here are a couple on generics: 1) Question: If I had this method, how would I create a new instance of type
Answer:
2) Question: If you wanted to indicate that the generic extends some base class, but you don't know what the class that extends the base class is going to be until runtime, how could you declare the generic? Answer: Use a wildcard: |
||||
|
Annotations: What are the risks? (the compiler can get into an infinite loop and jam the build process). Generics: How to build a mixin using generics? (write a generic class that takes a parameter, and then extend it with the sub-class as the parameter). Also, +1 on type erasure. |
|||||||||
|