比如shape1=“abc”,shape2="ABC",怎么把他们替换一下啊?
你可以设置一个中间变量,像这样:
String hobby = "慕课网";
String b ="abc";
String c;
c=hobby;
hobby=b;
b=c;