美文网首页
字符数组打印

字符数组打印

作者: xiaohei_e853 | 来源:发表于2022-05-15 10:26 被阅读0次
    打印字符数组
    ```    @Test
        public void testGetDepth(){
            String path="/付费/技术/test/222";
            String[] split = path.split("/");
            System.out.println(split.length);
            System.out.println(Arrays.deepToString(split));
    
        }
    
    

    相关文章

      网友评论

          本文标题:字符数组打印

          本文链接:https://www.haomeiwen.com/subject/djwvurtx.html