首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

视个泛型的例子

2014-01-15 
看个泛型的例子package com.wjy.effectivepublic class FStyle {public E E getField(E param){E resul

看个泛型的例子

package com.wjy.effective;public class FStyle {    public <E> E getField(E param){        E result=param;        return result;    }}

?

客户端程序:

package com.wjy.effective;public class TestFStyle {    public static void main(String args[]){        FStyle fStyle=new FStyle();//        int n=fStyle.getField(1)+2;        String s=fStyle.getField("hello")+2;        //        System.out.println("result is; "+n);        System.out.println("result is; "+s);    }}

?

运行结果:

//result is; 3result is; hello2

?

热点排行