Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これはそれほど重要ではありませんが、グアバなどを使用してすべて同じ値を持つ要素を配列に入力する Java ワンライナーを作成する方法があるかどうかに興味がありました。たとえば、次のようなものArrays.getSameElementArray(new long[12], 42L);
Arrays.getSameElementArray(new long[12], 42L);
はい、
long[] arr = new long[12]; Arrays.fill(arr, 42L);
あなたはこれを行うことができます:
long[] values = new long[12]; Arrays.fill(values, 42l);