在下面的函数中,我可以用什么来代替<typedefinition>
让程序打印“O noes!”?
public static void main(String[] args) {
Object o = null;
story(o);
}
private static void story(<typedefinition> o)
{
if (o != null)
System.out.println("O noes!");
else
System.out.println("O yes");
}