日期:2014-05-20 浏览次数:20664 次
package Chapter2; public class CallStorage { static public int Storage(int x) { return x++; } public static void main(String[] args) { int x=0; Storage(x); System.out.print(x); } }