我的第一个帖子😃有点激动 发表一下去年秋招时三七互娱java开发的试题,有需要的同学可以看一下 1、请写出下面代码的方法打印出来的内容。 public class StringTest { public static void main(String args[]) { String a = "this is String a"; String b = a; a = "this is String b"; System.out.println(b); ...