总结:我的笔试挂了..基础的继承不懂不会.我不知道到底是哪里的问题. 要好好反思 package com.da.ima2; public class jrfk { // int整型不能直接转化为Integer/ // 在实际转化的时候,将Integer 类的构造方法和Integer类内部的intValue()方法.是实现类型的转换 public static void main(String[] args) { // Hint a=4224; Integer in = new Integer(4…
基本数据类型的包装类Integer, Float, Double,Long,Byte等都实现的Comparable接口,用于列表List或数组arrays的排序 Comparable<Integer>接口方法的实现,对象列表的升序降序接口 我们通过重写该接口方法,可以对列表进行升序或降序排列. public int compareTo(T o); This interface imposes a total ordering on the objects of each class that…