摘要: char a = '你'; char b = a; System.out.println("a=" + a); System.out.println("b=" + b); b = '我'; System.out.println("a=" + a); System.out.println("b=" + 阅读全文
posted @ 2021-07-12 10:55 happywithus 阅读(240) 评论(0) 推荐(0)