update at 2022-03-04 10:14:44 by ehlxr

master
ehlxr 2022-03-04 10:14:44 +08:00
parent 4a6bd38732
commit 226c572e59
2 changed files with 3 additions and 2 deletions

View File

@ -22,7 +22,7 @@
* THE SOFTWARE. * THE SOFTWARE.
*/ */
package io.github.ehlxr; package io.github.ehlxr.util;
import java.util.BitSet; import java.util.BitSet;

View File

@ -36,6 +36,7 @@ public class Main {
{ 9, 10, 11, 12 } { 9, 10, 11, 12 }
}; };
System.out.println(ns.length); // 3 System.out.println(ns.length); // 3
System.out.println(ns[0][2]); System.out.println(ns[0].length); // 4
System.out.println(ns[2][2]); // 11
} }
} }