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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 毕影彬 中级黑马   /  2012-10-18 19:51  /  1010 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 毕影彬 于 2012-10-20 19:00 编辑

public static void printType(Type type, boolean isDefinition)
  {
  if (type instanceof Class)
  {
  Class<?> t = (Class<?>) type;
  System.out.print(t.getName());
  }
  else if (type instanceof TypeVariable)
  {
  TypeVariable<?> t = (TypeVariable<?>) type;
  System.out.print(t.getName());
  if (isDefinition)
  printTypes(t.getBounds(), " extends ", " & ", "", false);
  }
  else if (type instanceof WildcardType)
  {
  WildcardType t = (WildcardType) type;
  System.out.print("?");
  printTypes(t.getUpperBounds(), " extends ", " & ", "", false);
  printTypes(t.getLowerBounds(), " super ", " & ", "", false);
  }
  else if (type instanceof ParameterizedType)
  {
  ParameterizedType t = (ParameterizedType) type;
  Type owner = t.getOwnerType();
  if (owner != null)
  {
  printType(owner, false);
  System.out.print(".");
  }
  printType(t.getRawType(), false);
  printTypes(t.getActualTypeArguments(), "<", ", ", ">", false);
  }
  else if (type instanceof GenericArrayType)
  {
  GenericArrayType t = (GenericArrayType) type;
  System.out.print("");
  printType(t.getGenericComponentType(), isDefinition);
  System.out.print("[]");
  }

  }

这里
type instanceof WildcardType
type instanceof ParameterizedType
type instanceof TypeVariable
type instanceof GenericArrayType
分别代表什么

评分

参与人数 1技术分 +1 收起 理由
韩军博 + 1 很给力!

查看全部评分

2 个回复

倒序浏览
type是后面的子类
回复 使用道具 举报
instanceof是Java的一个二元操作符,主要是用来测试它左边的对象是否是它右边的类的实例,如果是的话返回true
type instanceof WildcardType   -----------WildcardType对象是否是type类的
type instanceof ParameterizedType
type instanceof TypeVariable
type instanceof GenericArrayType

在你的程序中,根据真假来判断是判断执行那个if里的语句的

评分

参与人数 1技术分 +1 收起 理由
韩军博 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马