Re: JAVADOC clarification needed in Class.getMethod

2015-08-29 Thread Jochen Theodorou
yeah, you are right, I made a mistake. supplying a null argument t a method call to call a Class varargs taking method is ambiguous. The compiler will want you to cast to either Class, in which case the null would be wrapped, or to Class[], in which case there will be no wrapping. Example: public

Re: JAVADOC clarification needed in Class.getMethod

2015-08-29 Thread Kyung Koo Yoon
> 2015. 8. 29., 오후 10:40, Kyung Koo Yoon 작성: > > Hi, Jochen. > > -- > > Software Innovation Driver yoonforh at gmail dot com > Analyze, Reason, Reshape the Question > PGP http://www.javadom.com/personal/yoonforhatgmaildotcom.asc >

Re: JAVADOC clarification needed in Class.getMethod

2015-08-29 Thread Kyung Koo Yoon
Hi, Jochen. -- Software Innovation Driver yoonforh at gmail dot com Analyze, Reason, Reshape the Question PGP http://www.javadom.com/personal/yoonforhatgmaildotcom.asc > 2015. 8. 29., 오후 10:01, Jochen Theodorou