-->
当前位置:首页 > 题库

单选题:Given code below:

Luz5年前 (2021-05-10)题库1082
Given code below:
```Java
public final String f() {}
```
Which statement below is correct? @[C](2)

A. final means f() can not be modified.
B. final means f() can not be overloaded.
C. final means f() can not be overridden.
D. final means the return value of f() can not be modified.




A.final means f() can not be modified.
B.final means f() can not be overloaded.
C.final means f() can not be overridden.
D.final means the return value of f() can not be modified.


答案:C