有以下方法的定义,请选择该方法的返回类型( )。 ReturnType method(byte x, double y) { return (short)x/y*2; } A、 byte B、 short C、 int D、 double
时间: 2024-03-04 12:51:37 浏览: 89
Swift教程:函数类型作为返回类型
5星 · 资源好评率100%
答案是B、short。因为该方法的返回类型是 ReturnType,但是在方法定义中并没有给出 ReturnType 的具体类型,所以我们需要通过方法中的语句来推断其类型。根据语句 return (short)x/y*2; 可知,该方法返回值是一个 short 类型的值,因此返回类型应该是 short。
阅读全文