Why is the following seen as better than the old way of casting?
MyObj obj = someService.find(MyObj.class, 'someId');
vs.
MyObj obj = (MyObj) someService.find('someId');
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Another advantage to using an explicit type parameter would be to allow the service method to be implemented using a
Proxy(in this caseMyObjwould need to beMyInterface). Without explicit type parameters, this would not be possible.You might use a
Proxyunder the covers for many reasons (testing for one)