摘要: 值传递 public class Demo03 { public static void main(String[] args) { int a = 1; System.out.println(a); Demo03.change(a); System.out.println(a); } public 阅读全文
posted @ 2021-05-23 21:01 Theshy-Riven 阅读(28) 评论(0) 推荐(0)