我在使用eclipse和编写此代码时
for (Property property : properties)
{
property.getType();
并使用
CTRL+1
我得到这个建议是有效的IPropertyTypeU type = property.getType();
但是我想使用特定的演员表
SimpleType simpletype = ((SimpleTypeU) property).getSimpleType();
我在使用where used选项(CTRL + SHIFT + G)时才发现此选项
有更方便的方法吗?
有一种简单的方法可以查看谁从特定界面扩展
例如,如果我单击IPropertyTypeU,我会看到他扩展的所有类/接口
但是我怎么容易知道SimpleType扩展了IPropertyTypeU?
最佳答案
在编辑器中选择“ IPropertyTypeU”类的字符,然后按F4。
您将能够看到4种不同的继承。