美文网首页
2019-10-09:1_4

2019-10-09:1_4

作者: RedAlert3 | 来源:发表于2019-10-09 23:39 被阅读0次

/**

* 使用Object表示泛型

*

* java 的基本思想就是可以通过使用像Object这样适当的超类来实现泛型类

*/

public class p1_4_1

{

public static void main(String[] args)

{

MemoryCell m=new MemoryCell();

m.write("37");

String val= (String) m.read();

System.out.println("contents are:"+val);

}

}

/**

* 基本类型包装

*

* 我们已有一种类型对象,可是语言语法需要一种不同类型对象.

* 典型用法就是存储一个基本类型,并添加一些这种基本类型不支持或不能正确支持的操作.

*/

public class p1_4_2

{

public static void main(String[] args)

{

MemoryCell m=new MemoryCell();

m.write(new Integer(37));

Integer wrapperVal= (Integer) m.read();

int val =wrapperVal.intValue();

System.out.println("contents are:"+val);

}

/**

* 使用接口类型表示泛型

*

* 只有在使用object类中已有的那些方法能够表示所执行的操作的时候,才能使用object作为泛型类型来工作.

*/

public class p1_4_3

{

public static Comparable findMax(Comparable[] arr)

{

int maxIndex=0;

for(int i=1;i

{

if(arr[i].compareTo(arr[maxIndex])>0)

{

maxIndex=i;

}

}

return arr[maxIndex];

}

/**

*  test findMax on shape and string objects.

*/

    public static void main(String[] args)

{

Shape[] shapes={new Circle(2),new Square(3),new Rectangle(4)};

String[] strings={"joe","bob","bill","zeke"};

System.out.println(findMax(shapes));

System.out.println(findMax(strings));

}

}

/**

* 语言数组类型的兼容性

*

* 语言设计中的困难之一是如何处理集合类型的继承问题.

* 设Rectangle IS-A Shape,那么是不是意味Rectangle[] IS-A Shape[]?

*/

public class p1_4_4

{

public static void main(String[] args)

{

/**

        * 两句都编译,而shapes[0]实际上引用了一个Circle,可是Rectangle IS-N-A Circle.

        * 这样就产生了类型混乱,运行时系统(runtime system)不能抛出ClassCastException,因为不存在类型转换.

        * 避免这种问题的最容易的方法是指定这些数组不是类型兼容的,但是在Java中数组却是类型兼容的.

        * 这叫做 '协变数组类型(covariant array type)'.

        * 每个数组都确定它所允许存储的对象的类型.如果插入一个不兼容的类型,虚拟机将抛出一个ArrayStoreException异常.

*/

        Shape[] shapes=new Circle[5];//编译: arrays are compatible(兼容的)

        shapes[0]=new Circle(2);//编译: Circle IS-A Shape

        shapes[1]=new Rectangle(1);//ArrayStoreException

    }

}

相关文章

  • 2019-10-09:1_4

    /** * 使用Object表示泛型 * * java 的基本思想就是可以通过使用像Object这样适当的超类来实...

  • 2019-10-09

    2019-10-09 宗明3 字数 379 · 阅读 0 2019-10-0921:29 2019-10-09 宗...

  • a thorough understanding of|充分了解

    title: A thorough understanding ofdate: 2019-10-09 16:58:...

  • 作业1_4

    importurllib.request frombs4importBeautifulSoup importreq...

  • 将日期转化为对应的周

    将["2019-12-02", "2019-11-11", "2019-10-09", "2018-12-12",...

  • 1_4参数传递

    1.在常成员函数中,不可以修改类中任意数据成员 double real ()const{ return re; }...

  • 菜园日记1_4

    20170221 菜历4日 天气:阴, 气温4-15度 早上起来一看,嘿,一些已经发芽了!! 速度最快的要算萝卜,...

  • 私董会“硬核案主”的复盘

    2019-10-09 LilyKoon 广州越秀 为什么说“硬核”,其实,是为了假装吸引眼球。(不满请拍砖‍?) ...

  • 富兰克林13条美德

    标签:富兰克林,13,13条美德,美德,富兰克林美德。 修订历史 2019-10-09:首次发布。 译文出处 以下...

  • 下载美丽的沙滩(1_4)

    一、总结:需要老师了,0,我通过简书提交作业,如何看您的点评,我给您发微博了1,代理这个地方,需要老师指导,win...

网友评论

      本文标题:2019-10-09:1_4

      本文链接:https://www.haomeiwen.com/subject/thynpctx.html