请问一下,定义方法时,括号中除了可以放入一个或多个参数外,还可以放入什么东西,比如说常量,一个类的类型什么的,这些可以啊。
今天看到一个同学写的代码??所以不明白了。
- class Text_2
- {
- public static void main(String[] args)
- {
- Other o=new Other();
- add(o);
- }
- public static void add(final Other o)
- {
- for(int x=0;x<5;x++)
- { System.out.println(o.i++);
- }
- }
- }
- class Other
- {
- public int i;
- }
求详解??(每一种情况)
|