注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
配列だとtoString()とかできないので、(これも原罪というやつか) String[] strs = new String[]{ "a", "... 配列だとtoString()とかできないので、(これも原罪というやつか) String[] strs = new String[]{ "a", "b", "c" }; System.out.println( strs != null ? Arrays.asList( strs ) : "null" ); とかいう感じで書いていたのだけど、Arrays.deepToString()とかあるじゃないか。 import static java.util.Arrays.deepToString; ... String[] strs = new String[]{ "a", "b", "c" }; System.out.println( deepToString( strs ) ); strs = null; System.out.println( deepToString( strs ) ); /
2018/12/06 リンク