- class Test
- {
- public static void main(String[] args)
- {
- int x = Search();
- System.out.println(x+" ----");
- Search();
- }
- public static int Search()
- {
- int i = 9;
- System.out.println(112);
- return i;
- }
- }
复制代码 输出结果:112
9 ----
112
为什么直接写函数Search();的时候怎么也输出结果“112”,没有返回值?而赋值给x的时候 还输出的返回值“9”。
|
|