单选题:Given code below:
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
```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