A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

public class SimpleCollection <T>
{

private int index;
private T objArr[];//定义一个空数组

public SimpleCollection()//构造一个初始化容量为0的列表
{
  objArr=(T[])new Object[100];
  //这个地方类型转化要注意:objArr=new T[100]会出现编译报错
  //如果协会曾objArr=new Object[100]还是会编译报错,因为是Object数组,
  //Object数组中可以顶以任何类型的,而T[]毕竟知识指定类型的数组,大家要注意
  
}
public SimpleCollection(int capacity)//构造一个具有指定容量的列表
{
  
  objArr=(T[])new Object[capacity];
}


public void add(T obj)//添加
{
  this.objArr[index++]=obj;
}

public T get(int index)//获取
{
  return this.objArr[index];
  
}
public int getLength()//获取集合长度
{
  return index;
}

public boolean isEmpty()//判断集合是否为空
{
  if(index==0)
   return true;
  else
   return false;
}
public static void sop(Object jj)//这是一个方面输出的方法,方便输出
{
  
  System.out.println(jj);
}

public static void main(String[] args)
{
  
  SimpleCollection<String> simple1=new SimpleCollection<String>();
  SimpleCollection<Integer> simple2=new SimpleCollection<Integer>(34);
  
  simple1.add("nihao");
  simple1.add("wohenhao");
  
  sop(simple1.get(1));
  sop(simple1.getLength());
  
  simple2.add(new Integer(2));
  simple2.add(new Integer(30));
  
  sop(simple2.get(1));
  sop(simple2.get(0));
  
  sop(simple2.isEmpty());
  
  
  
  
  
}
  
}

4 个回复

倒序浏览
本帖最后由 赵越海 于 2016-7-8 17:35 编辑

         .
回复 使用道具 举报
:lol顶一个! 不错
回复 使用道具 举报
不错啊,嘿嘿
回复 使用道具 举报
厉害啊,学习了,我也尝试着写下
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马