update INVOKESTATIC

This commit is contained in:
wangxiang
2023-07-27 11:43:09 +08:00
parent 12f0428d12
commit 366ad75831
3 changed files with 8 additions and 4 deletions

View File

@@ -89,7 +89,7 @@ public class TestJVM {
@Test
public void demo_foreach() throws Exception {
runMainClass(demo_foreach.class);
runMainClass(demo_foreach_1.class);
}
/**

View File

@@ -1,6 +1,6 @@
package haidnor.jvm.test.demo;
public class demo_foreach {
public class demo_foreach_1 {
public static void main(String[] args) {
int[] arr = new int[]{999, 333};
for (int i : arr) {