本帖最后由 kkopopo 于 2014-2-28 22:07 编辑
- public class Test2 {
- public static void main(String[] args) {
- final int age = 1;
- myMetod(age,new Student());//这个地方为何不报错? 我在函数中明明定义的必须为final
- }
- public static void myMetod(final int x,final Student stu){
- //
- }
- }
- class Student{
-
- }
复制代码 代码部分 我明明要求穿进去的参数必须是final的,为何new Student就可以!
|