本帖最后由 冯超 于 2013-4-3 21:26 编辑
代码如下- import java.util.Arrays;
-
- public class Pup {
- public static void main(String[] args)
- {
- //System.out.println(i);
- test("xx");
-
- }
-
- public static void test(String str) {
- String s = "abc= + 'Mark'";
- String sq = "abc =" + str;
- System.out.println(s);
- System.out.println(sq);
- }
- }
复制代码 我想输出和第一个一样的结果,str是变量 求助! |