符号<! - ? - >是什么意思?

时间:2015-12-10 07:36:47

标签: java android

在做一些Android应用程序开发时,我遇到了参数 SELECT month_val, year_val, cur_month FROM proj_duration_map where cur_month=max(cur_month) group by month_val, year_val, cur_month test。我的问题是AdapterView< ? >究竟是什么意思或做什么,因为我也在许多其他地方看到它,例如地图< ? >

1 个答案:

答案 0 :(得分:3)

在通用代码中,问号(),称为通配符,表示未知类型。

通配符可用于各种情况:作为参数,字段或局部变量的类型;有时作为回归类型。

所以为了回答这个问题:它是通配符 - &gt; Official Doc所以你可以在不知道类型时处理类事件。