码迷,mamicode.com
首页 > 编程语言 > 详细

Javac之关于方法的调用1

时间:2017-10-03 19:43:09      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:eth   should   ring   param   new t   关于   test   logs   nbsp   

 

实例1:

public class Test2{
	public void m1(){}

	public void test(){
		// javac warning: Unused type arguments for the non generic method m1() of type Test2; 
		// it should not be parameterized with arguments <String>
		new Test2().<String>m1();
	}

}

 

实例2:

  

Javac之关于方法的调用1

标签:eth   should   ring   param   new t   关于   test   logs   nbsp   

原文地址:http://www.cnblogs.com/extjs4/p/7624298.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!