我在Java中创建了两个类。主类'Main'用于将数组值传递到第二个类'Plan'。我的代码看起来像这样:
import java.util.ArrayList;
import java.utils.Arras;
public class Main {
public enum State {
A,
D,
H
};
Plan[] plan= new Plan[] {
new Plan(new State[]{State.A, State.A, State.A}),
new Plan(new State[]{State.A, State.D, State.H})};
}
我的其他课程'计划'如下:
import java.utils.Arrays;
public class Plan {
public static Main.State[] input;
public static Main.State[] output;
public static Main.State[] input_new = new Main.State[4];
this.input = input;
this.output = output;
this.input_new = input_new;
for(int i = 0; i < input.length; i++) {
input_new[i] = input[i];
}
}
现在在循环结束时,我想附加数组,以便它打印一个
的数组A A A A D H。
我尝试使用[this] / How can I concatenate two arrays in Java?)方法,但它给了我一个说“ArrayUtils”无法解析的神。有人可以在这里指出我的错误吗?
提前谢谢。
答案 0 :(得分:1)
试试这个:
<?php if (is_page(unternehmen || $post->post_parent==unternehmen)): ?> <!-- Unternehmen /postID 553 -->
<?php wp_nav_menu( array('menu' => 'Unternehmen Submenu' )); ?>
<?php endif; ?>
答案 1 :(得分:1)
添加Apache Commons依赖项? man cron
不是JDK的一部分。
如何执行此操作取决于您的构建工具。请谷歌如何将JAR依赖项添加到您正在使用的工具中。
答案 2 :(得分:1)
班级ArrayUtils
属于Apache Commons Lang库。按照链接获取jar并包含在类路径中。
答案 3 :(得分:1)
使用ArraysUtils
apache.commons
API
答案 4 :(得分:1)
就像你关于状态的答案一样,ArrayUtils是Apache Commons library的一个类。您可以将依赖项添加到项目中,也可以使用one of the manual approaches,它们也发布在与您使用的答案相同的线程中。