Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/lang/String/concat/ImplicitStringConcatOrder.java
41153 views
1
/*
2
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
/**
25
* @test
26
* @summary Test implicit string concat calls argument conversions in the right order
27
* @bug 8200118
28
*
29
* @compile ImplicitStringConcatOrder.java
30
* @run main/othervm -Xverify:all ImplicitStringConcatOrder
31
*
32
* @compile -XDstringConcat=inline ImplicitStringConcatOrder.java
33
* @run main/othervm -Xverify:all ImplicitStringConcatOrder
34
*
35
* @compile -XDstringConcat=indy ImplicitStringConcatOrder.java
36
* @run main/othervm -Xverify:all ImplicitStringConcatOrder
37
*
38
* @compile -XDstringConcat=indyWithConstants ImplicitStringConcatOrder.java
39
* @run main/othervm -Xverify:all ImplicitStringConcatOrder
40
*/
41
import java.lang.StringBuilder;
42
43
public class ImplicitStringConcatOrder {
44
45
static MyClass c = new MyClass();
46
47
public static void main(String[] args) throws Exception {
48
test("foo123bar", "foo" + c + c + c + "bar");
49
test("bazxyz456abc", "baz" + ("xyz" + c + c) + c + "abc");
50
test("caf7eba89be", "caf" + c + ("eba" + c + c) + "be");
51
}
52
53
public static void test(String expected, String actual) {
54
if (!expected.equals(actual)) {
55
StringBuilder sb = new StringBuilder();
56
sb.append("Expected = ");
57
sb.append(expected);
58
sb.append(", actual = ");
59
sb.append(actual);
60
throw new IllegalStateException(sb.toString());
61
}
62
}
63
64
static class MyClass {
65
int x;
66
public String toString() {
67
return String.valueOf(++x);
68
}
69
}
70
}
71
72